Skip to content

Commit 7e41a16

Browse files
committed
Update version check
1 parent e2d7d22 commit 7e41a16

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stdlib/glob.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ __all__ = ["escape", "glob", "iglob"]
99
if sys.version_info >= (3, 13):
1010
__all__ += ["translate"]
1111

12-
if sys.version_info >= (3, 10):
12+
if sys.version_info >= (3, 13):
1313
@deprecated("Will be removed in Python 3.15; Use `glob.glob` and pass *root_dir* argument instead.")
1414
def glob0(dirname: AnyStr, pattern: AnyStr) -> list[AnyStr]: ...
1515
@deprecated("Will be removed in Python 3.15; Use `glob.glob` and pass *root_dir* argument instead.")

0 commit comments

Comments
 (0)