File tree 4 files changed +21
-6
lines changed
4 files changed +21
-6
lines changed Original file line number Diff line number Diff line change @@ -1687,10 +1687,10 @@ class D(C):
1687
1687
self .assertEqual (d .foo (1 ), (d , 1 ))
1688
1688
self .assertEqual (D .foo (d , 1 ), (d , 1 ))
1689
1689
sm = staticmethod (None )
1690
- self .assertEqual (sm .__dict__ , {'__doc__' : None })
1690
+ self .assertEqual (sm .__dict__ , {'__doc__' : None . __doc__ })
1691
1691
sm .x = 42
1692
1692
self .assertEqual (sm .x , 42 )
1693
- self .assertEqual (sm .__dict__ , {"x" : 42 , '__doc__' : None })
1693
+ self .assertEqual (sm .__dict__ , {"x" : 42 , '__doc__' : None . __doc__ })
1694
1694
del sm .x
1695
1695
self .assertNotHasAttr (sm , "x" )
1696
1696
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def test_attr_matches(self):
55
55
if x .startswith ('s' )])
56
56
self .assertEqual (self .stdcompleter .attr_matches ('tuple.foospamegg' ), [])
57
57
expected = sorted ({'None.%s%s' % (x ,
58
- '()' if x == '__init_subclass__'
58
+ '()' if x in ( '__init_subclass__' , '__class__' )
59
59
else '' if x == '__doc__'
60
60
else '(' )
61
61
for x in dir (None )})
Original file line number Diff line number Diff line change @@ -2007,6 +2007,11 @@ static PyNumberMethods none_as_number = {
2007
2007
0 , /* nb_index */
2008
2008
};
2009
2009
2010
+ PyDoc_STRVAR (none_doc ,
2011
+ "NoneType()\n"
2012
+ "--\n\n"
2013
+ "The type of the None singleton." );
2014
+
2010
2015
PyTypeObject _PyNone_Type = {
2011
2016
PyVarObject_HEAD_INIT (& PyType_Type , 0 )
2012
2017
"NoneType" ,
@@ -2028,7 +2033,7 @@ PyTypeObject _PyNone_Type = {
2028
2033
0 , /*tp_setattro */
2029
2034
0 , /*tp_as_buffer */
2030
2035
Py_TPFLAGS_DEFAULT , /*tp_flags */
2031
- 0 , /*tp_doc */
2036
+ none_doc , /*tp_doc */
2032
2037
0 , /*tp_traverse */
2033
2038
0 , /*tp_clear */
2034
2039
_Py_BaseObject_RichCompare , /*tp_richcompare */
@@ -2106,6 +2111,11 @@ static PyNumberMethods notimplemented_as_number = {
2106
2111
.nb_bool = notimplemented_bool ,
2107
2112
};
2108
2113
2114
+ PyDoc_STRVAR (notimplemented_doc ,
2115
+ "NotImplementedType()\n"
2116
+ "--\n\n"
2117
+ "The type of the NotImplemented singleton." );
2118
+
2109
2119
PyTypeObject _PyNotImplemented_Type = {
2110
2120
PyVarObject_HEAD_INIT (& PyType_Type , 0 )
2111
2121
"NotImplementedType" ,
@@ -2127,7 +2137,7 @@ PyTypeObject _PyNotImplemented_Type = {
2127
2137
0 , /*tp_setattro */
2128
2138
0 , /*tp_as_buffer */
2129
2139
Py_TPFLAGS_DEFAULT , /*tp_flags */
2130
- 0 , /*tp_doc */
2140
+ notimplemented_doc , /*tp_doc */
2131
2141
0 , /*tp_traverse */
2132
2142
0 , /*tp_clear */
2133
2143
0 , /*tp_richcompare */
Original file line number Diff line number Diff line change @@ -57,6 +57,11 @@ static PyMethodDef ellipsis_methods[] = {
57
57
{NULL , NULL }
58
58
};
59
59
60
+ PyDoc_STRVAR (ellipsis_doc ,
61
+ "ellipsis()\n"
62
+ "--\n\n"
63
+ "The type of the Ellipsis singleton." );
64
+
60
65
PyTypeObject PyEllipsis_Type = {
61
66
PyVarObject_HEAD_INIT (& PyType_Type , 0 )
62
67
"ellipsis" , /* tp_name */
@@ -78,7 +83,7 @@ PyTypeObject PyEllipsis_Type = {
78
83
0 , /* tp_setattro */
79
84
0 , /* tp_as_buffer */
80
85
Py_TPFLAGS_DEFAULT , /* tp_flags */
81
- 0 , /* tp_doc */
86
+ ellipsis_doc , /* tp_doc */
82
87
0 , /* tp_traverse */
83
88
0 , /* tp_clear */
84
89
0 , /* tp_richcompare */
You can’t perform that action at this time.
0 commit comments