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
74135d0a
Commit
74135d0a
authored
Jul 03, 2010
by
Alexander Belopolsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made minimal modifications to pass included tests
parent
418182e1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
17 deletions
+7
-17
Demo/classes/Complex.py
Demo/classes/Complex.py
+7
-17
No files found.
Demo/classes/Complex.py
View file @
74135d0a
...
...
@@ -151,13 +151,9 @@ class Complex:
raise
ValueError
(
"can't convert Complex with nonzero im to float"
)
return
float
(
self
.
re
)
def
__
cmp
__
(
self
,
other
):
def
__
eq
__
(
self
,
other
):
other
=
ToComplex
(
other
)
return
cmp
((
self
.
re
,
self
.
im
),
(
other
.
re
,
other
.
im
))
def
__rcmp__
(
self
,
other
):
other
=
ToComplex
(
other
)
return
cmp
(
other
,
self
)
return
(
self
.
re
,
self
.
im
)
==
(
other
.
re
,
other
.
im
)
def
__bool__
(
self
):
return
not
(
self
.
re
==
self
.
im
==
0
)
...
...
@@ -190,14 +186,14 @@ class Complex:
__rmul__
=
__mul__
def
__div__
(
self
,
other
):
def
__
true
div__
(
self
,
other
):
other
=
ToComplex
(
other
)
d
=
float
(
other
.
re
*
other
.
re
+
other
.
im
*
other
.
im
)
if
not
d
:
raise
ZeroDivisionError
(
'Complex division'
)
return
Complex
((
self
.
re
*
other
.
re
+
self
.
im
*
other
.
im
)
/
d
,
(
self
.
im
*
other
.
re
-
self
.
re
*
other
.
im
)
/
d
)
def
__rdiv__
(
self
,
other
):
def
__r
true
div__
(
self
,
other
):
other
=
ToComplex
(
other
)
return
other
/
self
...
...
@@ -226,8 +222,9 @@ def checkop(expr, a, b, value, fuzz = 1e-6):
print
(
' '
,
a
,
'and'
,
b
,
end
=
' '
)
try
:
result
=
eval
(
expr
)
except
:
result
=
sys
.
exc_info
()[
0
]
except
Exception
as
e
:
print
(
'!!
\
t
!!
\
t
!! error: {}'
.
format
(
e
))
return
print
(
'->'
,
result
)
if
isinstance
(
result
,
str
)
or
isinstance
(
value
,
str
):
ok
=
(
result
==
value
)
...
...
@@ -295,13 +292,6 @@ def test():
(
Complex
(
1
),
Complex
(
0
,
10
),
1
),
(
2
,
Complex
(
4
,
0
),
16
),
],
'cmp(a,b)'
:
[
(
1
,
10
,
-
1
),
(
1
,
Complex
(
0
,
10
),
1
),
(
Complex
(
0
,
10
),
1
,
-
1
),
(
Complex
(
0
,
10
),
Complex
(
1
),
-
1
),
(
Complex
(
1
),
Complex
(
0
,
10
),
1
),
],
}
for
expr
in
sorted
(
testsuite
):
print
(
expr
+
':'
)
...
...
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