MCPcopy Create free account
hub / github.com/AdaCompNUS/summit / walk

Function walk

PythonAPI/carla/setup.py:26–29  ·  view source on GitHub ↗
(folder, file_filter='*')

Source from the content-addressed store, hash-verified

24 sources = ['source/libcarla/libcarla.cpp']
25
26 def walk(folder, file_filter='*'):
27 for root, _, filenames in os.walk(folder):
28 for filename in fnmatch.filter(filenames, file_filter):
29 yield os.path.join(root, filename)
30
31 if os.name == "posix":
32 # @todo Replace deprecated method.

Callers 1

get_libcarla_extensionsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected