You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Pythonwin/pywin/framework/bitmap.py uses for fileName in glob.glob1(winDir, "*.bmp")[:2]
Steps to reproduce the problem
Search glob1 in code
System information
Python version and distribution: 3.13
pywin32 version: 306
Installed from PyPI or exe installer: N/A
Windows Version: N/A
DLL locations: N/A
The text was updated successfully, but these errors were encountered:
Avasam
changed the title
glob.glob1 is deprecated, undocumented and was meant to be privateglob.glob1 is deprecated in Python3.13, undocumented and was meant to be private
Aug 5, 2024
Avasam
changed the title
glob.glob1 is deprecated in Python3.13, undocumented and was meant to be privateglob.glob1 is deprecated in Python3.13, undocumented and not meant to be public
Aug 5, 2024
For all bugs, please provide the following information:
Expected behavior and actual behavior
glob0
andglob1
are undocumented are were meant to be private. Their use is now officially deprecated as of Python 3.13:python/cpython#117337
https://docs.python.org/3.13/whatsnew/3.13.html#new-deprecations
Currently
Pythonwin/pywin/framework/bitmap.py
usesfor fileName in glob.glob1(winDir, "*.bmp")[:2]
Steps to reproduce the problem
Search
glob1
in codeSystem information
Python version and distribution: 3.13
pywin32 version: 306
Installed from PyPI or exe installer: N/A
Windows Version: N/A
DLL locations: N/A
The text was updated successfully, but these errors were encountered: