mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-07-09 18:09:17 +08:00
Fix stdlib stubtest for latest Python patch releases (#13812)
This commit is contained in:
@@ -2,9 +2,4 @@
|
||||
# >= 3.13
|
||||
# =======
|
||||
|
||||
# Depends on HAVE_NCURSESW and how we install CPython,
|
||||
# should be removed when 3.13 will be officially released:
|
||||
_?curses.unget_wch
|
||||
_?curses.window.get_wch
|
||||
|
||||
(mmap.MAP_32BIT)? # Exists locally on MacOS but not on GitHub
|
||||
|
||||
@@ -290,3 +290,8 @@ sunau.Au_write.initfp
|
||||
threading.Lock # Factory function at runtime, but that wouldn't let us use it in type hints
|
||||
types.SimpleNamespace.__init__ # class doesn't accept positional arguments but has default C signature
|
||||
typing_extensions\.Annotated # Undocumented implementation details
|
||||
|
||||
# Incompatible changes introduced in Python 3.10.17
|
||||
# (Remove once 3.10.17 becomes available for all platforms)
|
||||
(email._header_value_parser.get_encoded_word)?
|
||||
(email._header_value_parser.make_quoted_pairs)?
|
||||
|
||||
@@ -254,3 +254,8 @@ sunau.Au_write.initfp
|
||||
threading.Lock # Factory function at runtime, but that wouldn't let us use it in type hints
|
||||
types.SimpleNamespace.__init__ # class doesn't accept positional arguments but has default C signature
|
||||
typing_extensions\.Annotated # Undocumented implementation details
|
||||
|
||||
# Incompatible changes introduced in Python 3.11.12
|
||||
# (Remove once 3.11.12 becomes available for all platforms)
|
||||
(email._header_value_parser.get_encoded_word)?
|
||||
(email._header_value_parser.make_quoted_pairs)?
|
||||
|
||||
@@ -241,3 +241,7 @@ sunau.Au_write.initfp
|
||||
threading.Lock # Factory function at runtime, but that wouldn't let us use it in type hints
|
||||
types.SimpleNamespace.__init__ # class doesn't accept positional arguments but has default C signature
|
||||
typing_extensions\.Annotated # Undocumented implementation details
|
||||
|
||||
# Incompatible changes introduced in Python 3.9.22
|
||||
# (Remove once 3.9.22 becomes available for all platforms)
|
||||
(email._header_value_parser.get_encoded_word)?
|
||||
|
||||
Reference in New Issue
Block a user