Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c352620c
Commit
c352620c
authored
May 28, 2016
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
backout 3c9512d8ac0d
parent
338502b3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
11 deletions
+1
-11
Lib/test/test_descr.py
Lib/test/test_descr.py
+0
-8
Misc/NEWS
Misc/NEWS
+0
-2
Objects/typeobject.c
Objects/typeobject.c
+1
-1
No files found.
Lib/test/test_descr.py
View file @
c352620c
...
...
@@ -4564,14 +4564,6 @@ order (MRO) for bases """
self
.
assertRegex
(
repr
(
method
),
r"<bound method qualname of <object object at .*>>"
)
def
test_deleting_new_in_subclasses
(
self
):
class
X
:
def
__init__
(
self
,
a
):
pass
X
.
__new__
=
None
del
X
.
__new__
X
(
1
)
# should work
class
DictProxyTests
(
unittest
.
TestCase
):
def
setUp
(
self
):
...
...
Misc/NEWS
View file @
c352620c
...
...
@@ -80,8 +80,6 @@ Core and Builtins
(``int``) and ``f2()`` returns ``1.0`` (``int``), even if ``1`` and ``1.0``
are equal.
- Issue #25731: Fix set and deleting __new__ on a class.
- Issue #22995: [UPDATE] Comment out the one of the pickleability tests in
_PyObject_GetState() due to regressions observed in Cython-based projects.
...
...
Objects/typeobject.c
View file @
c352620c
...
...
@@ -6777,7 +6777,7 @@ update_one_slot(PyTypeObject *type, slotdef *p)
sanity checks and constructing a new argument
list. Cut all that nonsense short -- this speeds
up instance creation tremendously. */
specific
=
(
void
*
)
((
PyTypeObject
*
)
PyCFunction_GET_SELF
(
descr
))
->
tp_new
;
specific
=
(
void
*
)
type
->
tp_new
;
/* XXX I'm not 100% sure that there isn't a hole
in this reasoning that requires additional
sanity checks. I'll buy the first person to
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment