Skip to content

Commit d27bc8d

Browse files
authored
Update allowlist notes (#6528)
The note next to `asyncore` and `asynchat` is no longer strictly accurate following the decision of the steering Council to revert the removal of these modules in 3.11: python/steering-council#86 (comment)
1 parent a69ef8f commit d27bc8d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/stubtest_allowlists/py3_common.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ _weakref.CallableProxyType.__getattr__ # Should have all attributes of proxy
2121
_weakref.ProxyType.__getattr__ # Should have all attributes of proxy
2222
_weakref.ReferenceType.__call__ # C function default annotation is wrong
2323
argparse.Namespace.__getattr__ # The whole point of this class is its attributes are dynamic
24-
asynchat.async_chat.encoding # Removed in 3.11, can add if someone needs this
25-
asynchat.async_chat.use_encoding # Removed in 3.11, can add if someone needs this
26-
asynchat.find_prefix_at_end # Removed in 3.11, can add if someone needs this
27-
asyncore.dispatcher.addr # Removed in 3.11, can add if someone needs this
28-
asyncore.dispatcher.handle_accepted # Removed in 3.11, can add if someone needs this
24+
asynchat.async_chat.encoding # Removal planned for 3.12, can add if someone needs this
25+
asynchat.async_chat.use_encoding # Removal planned for 3.12, can add if someone needs this
26+
asynchat.find_prefix_at_end # Removal planned for 3.12, can add if someone needs this
27+
asyncore.dispatcher.addr # Removal planned for 3.12, can add if someone needs this
28+
asyncore.dispatcher.handle_accepted # Removal planned for 3.12, can add if someone needs this
2929
asyncio.BaseEventLoop.subprocess_exec # BaseEventLoop adds several parameters and stubtest fails on the difference if we add them
3030
# Condition functions are exported in __init__
3131
asyncio.Condition.acquire

0 commit comments

Comments
 (0)