merge basic_types.py to builtin_type.py

This commit is contained in:
Jeong Yunwon
2022-05-04 00:04:06 +09:00
parent 2c18207bee
commit 460be40381
2 changed files with 66 additions and 65 deletions

View File

@@ -1,65 +0,0 @@
from testutils import assert_raises
# Spec: https://docs.python.org/2/library/types.html
print(None)
# TypeType
# print(True) # LOAD_NAME???
print(1)
# print(1L) # Long
print(1.1)
# ComplexType
print("abc")
# print(u"abc")
# Structural below
print((1, 2)) # Tuple can be any length, but fixed after declared
x = (1,2)
print(x[0]) # Tuple can be any length, but fixed after declared
print([1, 2, 3])
# print({"first":1,"second":2})
print(int(1))
print(int(1.2))
print(float(1))
print(float(1.2))
assert type(1 - 2) is int
assert type(2 / 3) is float
x = 1
assert type(x) is int
assert type(x - 1) is int
a = bytes([1, 2, 3])
print(a)
b = bytes([1, 2, 3])
assert a == b
with assert_raises(TypeError):
bytes([object()])
with assert_raises(TypeError):
bytes(1.0)
with assert_raises(ValueError):
bytes(-1)
a = bytearray([1, 2, 3])
# assert a[1] == 2
assert int() == 0
a = complex(2, 4)
assert type(a) is complex
assert type(a + a) is complex
assert repr(a) == '(2+4j)'
a = 10j
assert repr(a) == '10j'
a = 1
assert a.conjugate() == a
a = 12345
b = a*a*a*a*a*a*a*a
assert b.bit_length() == 109

View File

@@ -1,3 +1,69 @@
from testutils import assert_raises
# Spec: https://docs.python.org/2/library/types.html
print(None)
# TypeType
# print(True) # LOAD_NAME???
print(1)
# print(1L) # Long
print(1.1)
# ComplexType
print("abc")
# print(u"abc")
# Structural below
print((1, 2)) # Tuple can be any length, but fixed after declared
x = (1,2)
print(x[0]) # Tuple can be any length, but fixed after declared
print([1, 2, 3])
# print({"first":1,"second":2})
print(int(1))
print(int(1.2))
print(float(1))
print(float(1.2))
assert type(1 - 2) is int
assert type(2 / 3) is float
x = 1
assert type(x) is int
assert type(x - 1) is int
a = bytes([1, 2, 3])
print(a)
b = bytes([1, 2, 3])
assert a == b
with assert_raises(TypeError):
bytes([object()])
with assert_raises(TypeError):
bytes(1.0)
with assert_raises(ValueError):
bytes(-1)
a = bytearray([1, 2, 3])
# assert a[1] == 2
assert int() == 0
a = complex(2, 4)
assert type(a) is complex
assert type(a + a) is complex
assert repr(a) == '(2+4j)'
a = 10j
assert repr(a) == '10j'
a = 1
assert a.conjugate() == a
a = 12345
b = a*a*a*a*a*a*a*a
assert b.bit_length() == 109
assert type.__module__ == 'builtins'
assert type.__qualname__ == 'type'
assert type.__name__ == 'type'