diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-03-17 05:05:44 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-03-17 05:05:44 (GMT) |
commit | 96384b93aae1d1e45dda21c4024d7d083c91626d (patch) | |
tree | 0f1fc36742c65bdbd227faffea75068b580112fa /Misc | |
parent | 80e22b56d3efdf2351307de6c6706ebed934fe7a (diff) | |
download | cpython-96384b93aae1d1e45dda21c4024d7d083c91626d.zip cpython-96384b93aae1d1e45dda21c4024d7d083c91626d.tar.gz cpython-96384b93aae1d1e45dda21c4024d7d083c91626d.tar.bz2 |
make extra arguments to object.__init__/__new__ to errors in most cases (finishes #1683368)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Alpha 2? Core and Builtins ----------------- +- Issue #1683368: object.__new__ and object.__init__ raise a TypeError if they + are passed arguments and their complementary method is not overridden. + - Give the ast.AST class a __dict__. - Issue #14334: Prevent in a segfault in type.__getattribute__ when it was not |