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
1bdd9b03
Commit
1bdd9b03
authored
Jun 04, 2002
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test repair now that module.__init__ requires a name and initializes
__name__ and __doc__.
parent
bdabeccf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
Lib/test/test_descr.py
Lib/test/test_descr.py
+7
-6
No files found.
Lib/test/test_descr.py
View file @
1bdd9b03
...
...
@@ -342,17 +342,18 @@ def test_dir():
import
sys
class
M
(
type
(
sys
)):
pass
minstance
=
M
()
minstance
=
M
(
"m"
)
minstance
.
b
=
2
minstance
.
a
=
1
vereq
(
dir
(
minstance
),
[
'a'
,
'b'
])
names
=
[
x
for
x
in
dir
(
minstance
)
if
x
not
in
[
"__name__"
,
"__doc__"
]]
vereq
(
names
,
[
'a'
,
'b'
])
class
M2
(
M
):
def
getdict
(
self
):
return
"Not a dict!"
__dict__
=
property
(
getdict
)
m2instance
=
M2
()
m2instance
=
M2
(
"m2"
)
m2instance
.
b
=
2
m2instance
.
a
=
1
vereq
(
m2instance
.
__dict__
,
"Not a dict!"
)
...
...
@@ -818,8 +819,8 @@ def pymods():
import
sys
MT
=
type
(
sys
)
class
MM
(
MT
):
def
__init__
(
self
):
MT
.
__init__
(
self
)
def
__init__
(
self
,
name
):
MT
.
__init__
(
self
,
name
)
def
__getattribute__
(
self
,
name
):
log
.
append
((
"getattr"
,
name
))
return
MT
.
__getattribute__
(
self
,
name
)
...
...
@@ -829,7 +830,7 @@ def pymods():
def
__delattr__
(
self
,
name
):
log
.
append
((
"delattr"
,
name
))
MT
.
__delattr__
(
self
,
name
)
a
=
MM
()
a
=
MM
(
"a"
)
a
.
foo
=
12
x
=
a
.
foo
del
a
.
foo
...
...
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