MCPcopy Create free account
hub / github.com/RustPython/RustPython / glob1

Function glob1

Lib/glob.py:141–144  ·  view source on GitHub ↗
(dirname, pattern)

Source from the content-addressed store, hash-verified

139 return _glob0(dirname, pattern, None, False)
140
141def glob1(dirname, pattern):
142 import warnings
143 warnings._deprecated("glob.glob1", _deprecated_function_message, remove=(3, 15))
144 return _glob1(dirname, pattern, None, False)
145
146# This helper function recursively yields relative pathnames inside a literal
147# directory.

Callers

nothing calls this directly

Calls 1

_glob1Function · 0.85

Tested by

no test coverage detected