You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
244 B
13 lines
244 B
# test overriding builtins
|
|
|
|
import builtins
|
|
|
|
# override generic builtin
|
|
builtins.abs = lambda x: x + 1
|
|
print(abs(1))
|
|
|
|
# __build_class__ is handled in a special way
|
|
builtins.__build_class__ = lambda x, y: ('class', y)
|
|
class A:
|
|
pass
|
|
print(A)
|
|
|