This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Fix for bug #1486663 mutable types check kwargs in tp_new
Type: Stage:
Components: Interpreter Core Versions:
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: georg.brandl, rhettinger, zseil
Priority: normal Keywords: patch

Created on 2006-05-20 01:17 by zseil, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
set_deque_constructor.diff zseil, 2006-05-20 01:17 patch
Messages (2)
msg50304 - (view) Author: Ziga Seilnacht (zseil) * (Python committer) Date: 2006-05-20 01:17
set and deque check that they are not called with
keyword arguments in their tp_new method, although
they are mutable. This makes them harder to subclass.
See the bug report for more details.

Patch contains tests and fixes for both of them.
msg50305 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-05-29 21:07
Logged In: YES 
user_id=849994

Raymond, please check.
History
Date User Action Args
2022-04-11 14:56:17adminsetgithub: 43384
2006-05-20 01:17:33zseilcreate