Skip to content

Commit

Permalink
remove some of the forced results, now that Bob's numbers better matc…
Browse files Browse the repository at this point in the history
…h real python.
  • Loading branch information
bnmnetp committed Mar 5, 2013
1 parent 0f1284c commit e9e6569
Show file tree
Hide file tree
Showing 14 changed files with 32 additions and 105 deletions.
8 changes: 4 additions & 4 deletions test/run/t158.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
print type(1)
print type(2**10)
print type(2**1024)
print type("wee")
print type(1) == int
print type(2**10) == int
print type(2**1024) == long
print type("wee") == str
8 changes: 4 additions & 4 deletions test/run/t158.py.real
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<class 'int'>
<class 'int'>
<class 'long'>
<class 'str'>
True
True
True
True
4 changes: 0 additions & 4 deletions test/run/t158.py.real.force

This file was deleted.

6 changes: 3 additions & 3 deletions test/run/t246.py.real
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<class 'int'>
<class 'long'>
<class 'float'>
<type 'int'>
<type 'long'>
<type 'float'>
3 changes: 0 additions & 3 deletions test/run/t246.py.real.force

This file was deleted.

6 changes: 3 additions & 3 deletions test/run/t265.py.real
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<class 'int'>
<class 'float'>
3
<type 'int'>
<type 'float'>
3
3.0
4 changes: 0 additions & 4 deletions test/run/t265.py.real.force

This file was deleted.

6 changes: 3 additions & 3 deletions test/run/t272.py.real
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<class 'long'>
<type 'long'>
3
3
<class 'long'>
<class 'long'>
<type 'long'>
<type 'long'>
5 changes: 0 additions & 5 deletions test/run/t272.py.real.force

This file was deleted.

18 changes: 9 additions & 9 deletions test/run/t276.py.real
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<class 'int'>
<class 'int'>
<class 'int'>
<__main__.X object>
<__main__.X object>
<class '__main__.X'>
<class '__main__.X'>
<class '__main__.X'>
<class '__main__.X'>
<type 'int'>
<type 'int'>
<type 'int'>
<__main__.X instance at 0x105294050>
<__main__.X instance at 0x105294050>
__main__.X
<class __main__.X at 0x10527e770>
__main__.X
<class __main__.X at 0x10527e770>
9 changes: 0 additions & 9 deletions test/run/t276.py.real.force

This file was deleted.

12 changes: 6 additions & 6 deletions test/run/t290.py.real
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
2000000000
20000000000
1000000000
10000000000
100000000
10000000
2000000000.0
20000000000.0
1000000000.0
10000000000.0
100000000.0
10000000.0
6 changes: 0 additions & 6 deletions test/run/t290.py.real.force

This file was deleted.

42 changes: 0 additions & 42 deletions test/run/t999.py

This file was deleted.

0 comments on commit e9e6569

Please sign in to comment.