File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
@tests/stubtest_allowlists Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -170,6 +170,10 @@ sys.ps1 # Available in interactive mode
170170sys.ps2 # Available in interactive mode
171171sys.tracebacklimit # Must be set first
172172
173+ # This is only present if Python was built with zlib-ng.
174+ (zlib\.ZLIBNG_VERSION)?
175+ (compression\.zlib\.ZLIBNG_VERSION)?
176+
173177
174178# ==========================================================
175179# Other allowlist entries that cannot or should not be fixed
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ Z_RLE: Final = 3
2626Z_SYNC_FLUSH : Final = 2
2727Z_TREES : Final = 6
2828
29- if sys .version_info >= (3 , 14 ) and sys . platform == "win32" :
30- # Available when zlib was built with zlib-ng, usually only on Windows
29+ if sys .version_info >= (3 , 14 ):
30+ # Available when zlib was built with zlib-ng
3131 ZLIBNG_VERSION : Final [str ]
3232
3333class error (Exception ): ...
You can’t perform that action at this time.
0 commit comments