1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
|
import py
from pypy.interpreter.argument import Arguments
from pypy.interpreter.baseobjspace import W_Root, DescrMismatch
from pypy.interpreter.error import OperationError, oefmt
from pypy.interpreter.gateway import (interp2app, BuiltinCode, unwrap_spec,
WrappedDefault)
from rpython.rlib.jit import promote
from rpython.rlib.objectmodel import compute_identity_hash, specialize
from rpython.rlib.objectmodel import instantiate, not_rpython
from rpython.tool.sourcetools import compile2, func_with_new_name
class TypeDef(object):
@not_rpython
def __init__(self, __name, __base=None, __total_ordering__=None,
__buffer=None, __confirm_applevel_del__=False,
_text_signature_=None, variable_sized=False, **rawdict):
"initialization-time only"
self.name = __name
if __base is None:
bases = []
elif isinstance(__base, tuple):
bases = list(__base)
else:
bases = [__base]
self.bases = bases
# Used in cpyext to fill tp_as_buffer slots
assert __buffer in {None, 'read-write', 'read'}, "Unknown value for __buffer"
for base in bases:
if __buffer is None:
__buffer = base.buffer
self.buffer = __buffer
self.heaptype = False
self.hasdict = '__dict__' in rawdict
# no __del__: use an RPython _finalize_() method and register_finalizer
if not __confirm_applevel_del__:
assert '__del__' not in rawdict
self.weakrefable = '__weakref__' in rawdict
self.doc = rawdict.get('__doc__', None)
self.text_signature = _text_signature_
for base in bases:
self.hasdict |= base.hasdict
self.weakrefable |= base.weakrefable
self.rawdict = {}
self.acceptable_as_base_class = '__new__' in rawdict
self.applevel_subclasses_base = None
self.add_entries(**rawdict)
assert __total_ordering__ in (None, 'auto'), "Unknown value for __total_ordering"
if __total_ordering__ == 'auto':
self.auto_total_ordering()
self.variable_sized = variable_sized
def add_entries(self, **rawdict):
# xxx fix the names of the methods to match what app-level expects
for key, value in rawdict.items():
if isinstance(value, (interp2app, GetSetProperty)):
value.name = key
self.rawdict.update(rawdict)
def auto_total_ordering(self):
assert '__lt__' in self.rawdict, "__total_ordering='auto' requires __lt__"
assert '__eq__' in self.rawdict, "__total_ordering='auto' requires __eq__"
self.add_entries(__le__ = auto__le__,
__gt__ = auto__gt__,
__ge__ = auto__ge__,
__ne__ = auto__ne__)
def _freeze_(self):
# hint for the annotator: track individual constant instances of TypeDef
return True
def __repr__(self):
return "<%s name=%r>" % (self.__class__.__name__, self.name)
# generic special cmp methods defined on top of __lt__ and __eq__, used by
# automatic total ordering
@interp2app
def auto__le__(space, w_self, w_other):
return space.not_(space.lt(w_other, w_self))
@interp2app
def auto__gt__(space, w_self, w_other):
return space.lt(w_other, w_self)
@interp2app
def auto__ge__(space, w_self, w_other):
return space.not_(space.lt(w_self, w_other))
@interp2app
def auto__ne__(space, w_self, w_other):
return space.not_(space.eq(w_self, w_other))
# ____________________________________________________________
# Hash support
def default_identity_hash(space, w_obj):
w_unique_id = w_obj.immutable_unique_id(space)
if w_unique_id is None: # common case
return space.newint(compute_identity_hash(w_obj))
else:
return space.hash(w_unique_id)
# ____________________________________________________________
#
# For each built-in app-level type Xxx that can be subclassed at
# app-level, the corresponding interp-level W_XxxObject class cannot
# generally represent instances of app-level subclasses of Xxx. The
# reason is that it is missing a place to store the __dict__, the slots,
# the weakref lifeline, and it typically has no interp-level __del__.
# So we create a few interp-level subclasses of W_XxxObject, which add
# some combination of features. This is done using mapdict.
# Note that nowadays, we need not "a few" but only one subclass. It
# adds mapdict, which flexibly allows all features. We handle the
# presence or absence of an app-level '__del__' by calling
# register_finalizer() or not.
@specialize.memo()
@not_rpython
def get_unique_interplevel_subclass(space, cls):
"initialization-time only"
assert cls.typedef.acceptable_as_base_class
try:
return _unique_subclass_cache[cls]
except KeyError:
subcls = _getusercls(cls)
assert cls not in _unique_subclass_cache
_unique_subclass_cache[cls] = subcls
return subcls
_unique_subclass_cache = {}
def _getusercls(cls):
from rpython.rlib import objectmodel
from pypy.objspace.std.objectobject import W_ObjectObject
from pypy.objspace.std.mapdict import (BaseUserClassMapdict,
MapdictDictSupport, MapdictWeakrefSupport,
_make_storage_mixin_size_n, MapdictStorageMixin)
typedef = cls.typedef
name = cls.__name__ + "User"
if cls is W_ObjectObject:
base_mixin = _make_storage_mixin_size_n()
else:
base_mixin = MapdictStorageMixin
copy_methods = [BaseUserClassMapdict]
if not typedef.hasdict:
# the type has no dict, mapdict to provide the dict
copy_methods.append(MapdictDictSupport)
name += "Dict"
if not typedef.weakrefable:
# the type does not support weakrefs yet, mapdict to provide weakref
# support
copy_methods.append(MapdictWeakrefSupport)
name += "Weakrefable"
class subcls(cls):
user_overridden_class = True
objectmodel.import_from_mixin(base_mixin)
for copycls in copy_methods:
_copy_methods(copycls, subcls)
subcls.__name__ = name
return subcls
def _copy_methods(copycls, subcls):
for key, value in copycls.__dict__.items():
if (not key.startswith('__') or key == '__del__'):
setattr(subcls, key, value)
# ____________________________________________________________
@specialize.arg(0)
def make_descr_typecheck_wrapper(tag, func, extraargs=(), cls=None,
use_closure=False):
if func is None:
return None
return _make_descr_typecheck_wrapper(tag, func, extraargs, cls, use_closure)
@specialize.memo()
def _make_descr_typecheck_wrapper(tag, func, extraargs, cls, use_closure):
# - if cls is None, the wrapped object is passed to the function
# - if cls is a class, an unwrapped instance is passed
# - if cls is a string, XXX unused?
if cls is None and use_closure:
return func
if hasattr(func, 'im_func'):
assert func.im_class is cls
func = func.im_func
miniglobals = {
func.__name__: func,
'OperationError': OperationError
}
if cls is None:
source = """
def descr_typecheck_%(name)s(closure, space, obj, %(extra)s):
return %(name)s(%(args)s, %(extra)s)
"""
else:
cls_name = cls.__name__
assert issubclass(cls, W_Root)
source = """
def descr_typecheck_%(name)s(closure, space, w_obj, %(extra)s):
obj = space.descr_self_interp_w(%(cls_name)s, w_obj)
return %(name)s(%(args)s, %(extra)s)
"""
miniglobals[cls_name] = cls
name = func.__name__
extra = ', '.join(extraargs)
from pypy.interpreter import pycode
sig = pycode.cpython_code_signature(func.func_code)
argnames = sig.argnames
if use_closure:
if argnames[1] == 'space':
args = "closure, space, obj"
else:
args = "closure, obj, space"
else:
if argnames[0] == 'space':
args = "space, obj"
else:
args = "obj, space"
source = py.code.Source(source % locals())
exec source.compile() in miniglobals
return miniglobals['descr_typecheck_%s' % func.__name__]
@specialize.arg(0)
def make_objclass_getter(tag, func, cls):
if func and hasattr(func, 'im_func'):
assert not cls or cls is func.im_class
cls = func.im_class
return _make_objclass_getter(cls)
@specialize.memo()
def _make_objclass_getter(cls):
if not cls:
return None, cls
miniglobals = {}
if isinstance(cls, str):
assert cls.startswith('<'), "pythontype typecheck should begin with <"
cls_name = cls[1:]
typeexpr = "space.w_%s" % cls_name
else:
miniglobals['cls'] = cls
typeexpr = "space.gettypeobject(cls.typedef)"
source = """if 1:
def objclass_getter(space):
return %s
\n""" % (typeexpr,)
exec compile2(source) in miniglobals
res = miniglobals['objclass_getter'], cls
return res
class GetSetProperty(W_Root):
_immutable_fields_ = ["fget", "fset", "fdel"]
w_objclass = None
@specialize.arg(7)
def __init__(self, fget, fset=None, fdel=None, doc=None,
cls=None, use_closure=False, tag=None, name=None):
objclass_getter, cls = make_objclass_getter(tag, fget, cls)
fget = make_descr_typecheck_wrapper((tag, 0), fget,
cls=cls, use_closure=use_closure)
fset = make_descr_typecheck_wrapper((tag, 1), fset, ('w_value',),
cls=cls, use_closure=use_closure)
fdel = make_descr_typecheck_wrapper((tag, 2), fdel,
cls=cls, use_closure=use_closure)
self._init(fget, fset, fdel, doc, cls, objclass_getter, use_closure,
name)
def _init(self, fget, fset, fdel, doc, cls, objclass_getter, use_closure,
name):
self.fget = fget
self.fset = fset
self.fdel = fdel
self.doc = doc
self.reqcls = cls
self.w_qualname = None
self.objclass_getter = objclass_getter
self.use_closure = use_closure
self.name = name if name is not None else '<generic property>'
def copy_for_type(self, w_objclass):
if self.objclass_getter is None:
new = instantiate(GetSetProperty)
new._init(self.fget, self.fset, self.fdel, self.doc, self.reqcls,
None, self.use_closure, self.name)
new.w_objclass = w_objclass
return new
else:
return self
@unwrap_spec(w_cls = WrappedDefault(None))
def descr_property_get(self, space, w_obj, w_cls=None):
"""property.__get__(obj[, type]) -> value
Read the value of the property of the given obj."""
# XXX HAAAAAAAAAAAACK (but possibly a good one)
if (space.is_w(w_obj, space.w_None)
and not space.is_w(w_cls, space.type(space.w_None))):
#print self, w_obj, w_cls
if space.is_w(w_cls, space.w_None):
raise oefmt(space.w_TypeError, "__get__(None, None) is invalid")
return self
else:
try:
return self.fget(self, space, w_obj)
except DescrMismatch:
return w_obj.descr_call_mismatch(
space, '__getattribute__',
self.reqcls, Arguments(space, [w_obj,
space.newtext(self.name)]))
def readonly_attribute(self, space): # overwritten in cpyext
if self.name == '<generic property>':
raise oefmt(space.w_AttributeError, "readonly attribute")
else:
raise oefmt(space.w_AttributeError, "readonly attribute '%s'", self.name)
def descr_property_set(self, space, w_obj, w_value):
"""property.__set__(obj, value)
Change the value of the property of the given obj."""
fset = self.fset
if fset is None:
raise self.readonly_attribute(space)
try:
fset(self, space, w_obj, w_value)
except DescrMismatch:
w_obj.descr_call_mismatch(
space, '__setattr__',
self.reqcls, Arguments(space, [w_obj,
space.newtext(self.name),
w_value]))
def descr_property_del(self, space, w_obj):
"""property.__delete__(obj)
Delete the value of the property from the given obj."""
fdel = self.fdel
if fdel is None:
raise oefmt(space.w_AttributeError, "cannot delete attribute")
try:
fdel(self, space, w_obj)
except DescrMismatch:
w_obj.descr_call_mismatch(
space, '__delattr__',
self.reqcls, Arguments(space, [w_obj,
space.newtext(self.name)]))
def descr_get_qualname(self, space):
if self.w_qualname is None:
self.w_qualname = self._calculate_qualname(space)
return self.w_qualname
def _calculate_qualname(self, space):
if self.reqcls is None:
type_qualname = '?'
else:
w_type = space.gettypeobject(self.reqcls.typedef)
type_qualname = space.text_w(
space.getattr(w_type, space.newtext('__qualname__')))
qualname = "%s.%s" % (type_qualname, self.name)
return space.newtext(qualname)
def descr_get_objclass(space, property):
if property.w_objclass is not None:
return property.w_objclass
if property.objclass_getter is not None:
return property.objclass_getter(space)
# NB. this is an AttributeError to make inspect.py happy
raise oefmt(space.w_AttributeError,
"generic property has no __objclass__")
def spacebind(self, space):
if hasattr(space, '_see_getsetproperty'):
space._see_getsetproperty(self) # only for fake/objspace.py
return self
@not_rpython
def interp_attrproperty(name, cls, doc=None, wrapfn=None):
"initialization-time only"
assert wrapfn is not None
def fget(space, obj):
return getattr(space, wrapfn)(getattr(obj, name))
return GetSetProperty(fget, cls=cls, doc=doc)
@not_rpython
def interp_attrproperty_w(name, cls, doc=None):
"initialization-time only"
def fget(space, obj):
w_value = getattr(obj, name)
if w_value is None:
return space.w_None
else:
return w_value
return GetSetProperty(fget, cls=cls, doc=doc)
GetSetProperty.typedef = TypeDef(
"getset_descriptor",
__get__ = interp2app(GetSetProperty.descr_property_get),
__set__ = interp2app(GetSetProperty.descr_property_set),
__delete__ = interp2app(GetSetProperty.descr_property_del),
__name__ = interp_attrproperty('name', cls=GetSetProperty, wrapfn="newtext_or_none"),
__qualname__ = GetSetProperty(GetSetProperty.descr_get_qualname),
__objclass__ = GetSetProperty(GetSetProperty.descr_get_objclass),
__doc__ = interp_attrproperty('doc', cls=GetSetProperty, wrapfn="newtext_or_none"),
)
assert not GetSetProperty.typedef.acceptable_as_base_class # no __new__
class Member(W_Root):
"""For slots."""
_immutable_ = True
def __init__(self, index, name, w_cls):
self.index = index
self.name = name
self.w_cls = w_cls
def typecheck(self, space, w_obj):
if not space.isinstance_w(w_obj, self.w_cls):
raise oefmt(space.w_TypeError,
"descriptor '%N' for '%N' objects doesn't apply to "
"'%T' object", self, self.w_cls, w_obj)
def descr_member_get(self, space, w_obj, w_cls=None):
"""member.__get__(obj[, type]) -> value
Read the slot 'member' of the given 'obj'."""
if space.is_w(w_obj, space.w_None):
return self
else:
self.typecheck(space, w_obj)
w_result = w_obj.getslotvalue(self.index)
if w_result is None:
raise OperationError(space.w_AttributeError,
space.newtext(self.name)) # XXX better message
return w_result
def descr_member_set(self, space, w_obj, w_value):
"""member.__set__(obj, value)
Write into the slot 'member' of the given 'obj'."""
self.typecheck(space, w_obj)
w_obj.setslotvalue(self.index, w_value)
def descr_member_del(self, space, w_obj):
"""member.__delete__(obj)
Delete the value of the slot 'member' from the given 'obj'."""
self.typecheck(space, w_obj)
success = w_obj.delslotvalue(self.index)
if not success:
raise OperationError(space.w_AttributeError,
space.newtext(self.name)) # XXX better message
Member.typedef = TypeDef(
"member_descriptor",
__get__ = interp2app(Member.descr_member_get),
__set__ = interp2app(Member.descr_member_set),
__delete__ = interp2app(Member.descr_member_del),
__name__ = interp_attrproperty('name', cls=Member, wrapfn="newtext_or_none"),
__objclass__ = interp_attrproperty_w('w_cls', cls=Member),
)
assert not Member.typedef.acceptable_as_base_class # no __new__
# ____________________________________________________________
class ClassAttr(W_Root):
"""For class-level attributes that need to be initialized
with some code. This code is provided as a callback function
invoked with the space.
"""
def __init__(self, function):
self.function = function
def spacebind(self, space):
return self.function(space)
# ____________________________________________________________
def generic_new_descr(W_Type):
def descr_new(space, w_subtype, __args__):
self = space.allocate_instance(W_Type, w_subtype)
W_Type.__init__(self, space)
return self
descr_new = func_with_new_name(descr_new, 'descr_new_%s' % W_Type.__name__)
return interp2app(descr_new)
# ____________________________________________________________
#
# Definition of the type's descriptors for all the internal types
from pypy.interpreter.eval import Code
from pypy.interpreter.pycode import PyCode, CO_VARARGS, CO_VARKEYWORDS
from pypy.interpreter.pyframe import PyFrame
from pypy.interpreter.pyopcode import SuspendedUnroller
from pypy.interpreter.module import Module
from pypy.interpreter.function import (Function, Method, StaticMethod,
ClassMethod, BuiltinFunction, descr_function_get)
from pypy.interpreter.pytraceback import PyTraceback
from pypy.interpreter.generator import GeneratorIterator, Coroutine
from pypy.interpreter.generator import CoroutineWrapper, AIterWrapper
from pypy.interpreter.nestedscope import Cell
from pypy.interpreter.special import NotImplemented, Ellipsis
def descr_get_dict(space, w_obj):
w_dict = w_obj.getdict(space)
if w_dict is None:
raise oefmt(space.w_TypeError,
"descriptor '__dict__' doesn't apply to '%T' objects",
w_obj)
return w_dict
def descr_set_dict(space, w_obj, w_dict):
w_obj.setdict(space, w_dict)
def descr_del_dict(space, w_obj): # blame CPython for the existence of this one
w_obj.setdict(space, space.newdict())
def descr_get_weakref(space, w_obj):
lifeline = w_obj.getweakref()
if lifeline is None:
return space.w_None
return lifeline.get_any_weakref(space)
dict_descr = GetSetProperty(descr_get_dict, descr_set_dict, descr_del_dict,
doc="dictionary for instance variables (if defined)")
dict_descr.name = '__dict__'
def generic_ne(space, w_obj1, w_obj2):
if space.eq_w(w_obj1, w_obj2):
return space.w_False
else:
return space.w_True
descr_generic_ne = interp2app(generic_ne)
# co_xxx interface emulation for built-in code objects
def fget_co_varnames(space, code): # unwrapping through unwrap_spec
return space.newtuple([space.newtext(name) for name in code.getvarnames()])
def fget_co_argcount(space, code): # unwrapping through unwrap_spec
return space.newint(code.signature().num_argnames())
def fget_co_kwonlyargcount(space, code): # unwrapping through unwrap_spec
return space.newint(code.signature().num_kwonlyargnames())
def fget_zero(space, code):
return space.newint(0)
def fget_co_flags(space, code): # unwrapping through unwrap_spec
sig = code.signature()
flags = 0
if sig.has_vararg():
flags |= CO_VARARGS
if sig.has_kwarg():
flags |= CO_VARKEYWORDS
return space.newint(flags)
def fget_co_consts(space, code): # unwrapping through unwrap_spec
w_docstring = code.getdocstring(space)
return space.newtuple([w_docstring])
weakref_descr = GetSetProperty(descr_get_weakref,
doc="list of weak references to the object (if defined)")
weakref_descr.name = '__weakref__'
def make_weakref_descr(cls):
"""Make instances of the W_Root subclass 'cls' weakrefable.
This returns the '__weakref__' desctriptor to use for the TypeDef.
Note that if the class also defines a custom '__del__', the
__del__ should call self.clear_all_weakrefs() before it clears
the resources used by the object.
"""
# force the interface into the given cls
def getweakref(self):
return self._lifeline_
def setweakref(self, space, weakreflifeline):
self._lifeline_ = weakreflifeline
def delweakref(self):
self._lifeline_ = None
cls._lifeline_ = None
cls.getweakref = getweakref
cls.setweakref = setweakref
cls.delweakref = delweakref
return weakref_descr
Code.typedef = TypeDef('internal-code',
co_name = interp_attrproperty('co_name', cls=Code, wrapfn="newtext_or_none"),
co_varnames = GetSetProperty(fget_co_varnames, cls=Code),
co_argcount = GetSetProperty(fget_co_argcount, cls=Code),
co_kwonlyargcount = GetSetProperty(fget_zero, cls=Code),
co_flags = GetSetProperty(fget_co_flags, cls=Code),
co_consts = GetSetProperty(fget_co_consts, cls=Code),
)
assert not Code.typedef.acceptable_as_base_class # no __new__
BuiltinCode.typedef = TypeDef('builtin-code',
__reduce__ = interp2app(BuiltinCode.descr__reduce__),
co_name = interp_attrproperty('co_name', cls=BuiltinCode, wrapfn="newtext_or_none"),
co_varnames = GetSetProperty(fget_co_varnames, cls=BuiltinCode),
co_argcount = GetSetProperty(fget_co_argcount, cls=BuiltinCode),
co_kwonlyargcount = GetSetProperty(fget_co_kwonlyargcount, cls=BuiltinCode),
co_flags = GetSetProperty(fget_co_flags, cls=BuiltinCode),
co_consts = GetSetProperty(fget_co_consts, cls=BuiltinCode),
)
assert not BuiltinCode.typedef.acceptable_as_base_class # no __new__
PyCode.typedef = TypeDef('code',
__new__ = interp2app(PyCode.descr_code__new__.im_func),
__eq__ = interp2app(PyCode.descr_code__eq__),
__ne__ = descr_generic_ne,
__hash__ = interp2app(PyCode.descr_code__hash__),
__reduce__ = interp2app(PyCode.descr__reduce__),
__repr__ = interp2app(PyCode.repr),
co_argcount = interp_attrproperty('co_argcount', cls=PyCode, wrapfn="newint"),
co_kwonlyargcount = interp_attrproperty('co_kwonlyargcount', cls=PyCode, wrapfn="newint"),
co_nlocals = interp_attrproperty('co_nlocals', cls=PyCode, wrapfn="newint"),
co_stacksize = interp_attrproperty('co_stacksize', cls=PyCode, wrapfn="newint"),
co_flags = interp_attrproperty('co_flags', cls=PyCode, wrapfn="newint"),
co_code = interp_attrproperty('co_code', cls=PyCode, wrapfn="newbytes"),
co_consts = GetSetProperty(PyCode.fget_co_consts),
co_names = GetSetProperty(PyCode.fget_co_names),
co_varnames = GetSetProperty(PyCode.fget_co_varnames),
co_freevars = GetSetProperty(PyCode.fget_co_freevars),
co_cellvars = GetSetProperty(PyCode.fget_co_cellvars),
co_filename = interp_attrproperty_w('w_filename', cls=PyCode),
co_name = interp_attrproperty('co_name', cls=PyCode, wrapfn="newtext"),
co_firstlineno = interp_attrproperty('co_firstlineno', cls=PyCode, wrapfn="newint"),
co_lnotab = interp_attrproperty('co_lnotab', cls=PyCode, wrapfn="newbytes"),
__weakref__ = make_weakref_descr(PyCode),
)
PyCode.typedef.acceptable_as_base_class = False
PyFrame.typedef = TypeDef('frame',
#__reduce__ = interp2app(PyFrame.descr__reduce__), --- logic not updated
#__setstate__ = interp2app(PyFrame.descr__setstate__),
clear = interp2app(PyFrame.descr_clear),
f_builtins = GetSetProperty(PyFrame.fget_f_builtins),
f_lineno = GetSetProperty(PyFrame.fget_f_lineno, PyFrame.fset_f_lineno),
f_back = GetSetProperty(PyFrame.fget_f_back),
f_lasti = GetSetProperty(PyFrame.fget_f_lasti),
f_trace = GetSetProperty(PyFrame.fget_f_trace, PyFrame.fset_f_trace,
PyFrame.fdel_f_trace),
f_restricted = GetSetProperty(PyFrame.fget_f_restricted),
f_code = GetSetProperty(PyFrame.fget_code),
f_locals = GetSetProperty(PyFrame.fget_getdictscope),
f_globals = GetSetProperty(PyFrame.fget_w_globals),
)
assert not PyFrame.typedef.acceptable_as_base_class # no __new__
Module.typedef = TypeDef("module",
__new__ = interp2app(Module.descr_module__new__.im_func),
__init__ = interp2app(Module.descr_module__init__),
__repr__ = interp2app(Module.descr_module__repr__),
__getattribute__=interp2app(Module.descr_getattribute),
__dir__ = interp2app(Module.descr_module__dir__),
__reduce__ = interp2app(Module.descr__reduce__),
__dict__ = GetSetProperty(descr_get_dict, cls=Module), # module dictionaries are readonly attributes
__doc__ = 'module(name[, doc])\n\nCreate a module object.\nThe name must be a string; the optional doc argument can have any type.',
__weakref__ = make_weakref_descr(Module),
)
getset_func_doc = GetSetProperty(Function.fget_func_doc,
Function.fset_func_doc,
Function.fdel_func_doc)
# __module__ attribute lazily gets its value from the w_globals
# at the time of first invocation. This is not 100% compatible but
# avoid problems at the time we construct the first functions when
# it's not really possible to do a get or getitem on dictionaries
# (mostly because wrapped exceptions don't exist at that time)
getset___module__ = GetSetProperty(Function.fget___module__,
Function.fset___module__,
Function.fdel___module__)
getset_func_defaults = GetSetProperty(Function.fget_func_defaults,
Function.fset_func_defaults,
Function.fdel_func_defaults)
getset_func_kwdefaults = GetSetProperty(Function.fget_func_kwdefaults,
Function.fset_func_kwdefaults,
Function.fdel_func_kwdefaults)
getset_func_code = GetSetProperty(Function.fget_func_code,
Function.fset_func_code)
getset_func_name = GetSetProperty(Function.fget_func_name,
Function.fset_func_name)
getset_func_qualname = GetSetProperty(Function.fget_func_qualname,
Function.fset_func_qualname)
getset_func_annotations = GetSetProperty(Function.fget_func_annotations,
Function.fset_func_annotations,
Function.fdel_func_annotations)
getset_func_dict = GetSetProperty(descr_get_dict, descr_set_dict, cls=Function)
Function.typedef = TypeDef("function",
__new__ = interp2app(Function.descr_function__new__.im_func),
__call__ = interp2app(Function.descr_function_call,
descrmismatch='__call__'),
__get__ = interp2app(descr_function_get),
__repr__ = interp2app(Function.descr_function_repr, descrmismatch='__repr__'),
#__reduce__ = interp2app(Function.descr_function__reduce__),
#__setstate__ = interp2app(Function.descr_function__setstate__),
__code__ = getset_func_code,
__doc__ = getset_func_doc,
__name__ = getset_func_name,
__qualname__ = getset_func_qualname,
__dict__ = getset_func_dict,
__defaults__ = getset_func_defaults,
__defaults_count__ = GetSetProperty(Function.fget_defaults_count),
__kwdefaults__ = getset_func_kwdefaults,
__annotations__ = getset_func_annotations,
__globals__ = interp_attrproperty_w('w_func_globals', cls=Function),
__closure__ = GetSetProperty(Function.fget_func_closure),
__module__ = getset___module__,
__weakref__ = make_weakref_descr(Function),
)
Function.typedef.acceptable_as_base_class = False
Method.typedef = TypeDef(
"method",
__doc__ = """instancemethod(function, instance, class)
Create an instance method object.""",
__new__ = interp2app(Method.descr_method__new__.im_func),
__call__ = interp2app(Method.descr_method_call),
__get__ = interp2app(Method.descr_method_get),
__func__ = interp_attrproperty_w('w_function', cls=Method),
__self__ = interp_attrproperty_w('w_instance', cls=Method),
__getattribute__ = interp2app(Method.descr_method_getattribute),
__eq__ = interp2app(Method.descr_method_eq),
__ne__ = descr_generic_ne,
__hash__ = interp2app(Method.descr_method_hash),
__repr__ = interp2app(Method.descr_method_repr),
__reduce__ = interp2app(Method.descr_method__reduce__),
__weakref__ = make_weakref_descr(Method),
)
Method.typedef.acceptable_as_base_class = False
StaticMethod.typedef = TypeDef("staticmethod",
__doc__ = """staticmethod(function) -> static method
Convert a function to be a static method.
A static method does not receive an implicit first argument.
To declare a static method, use this idiom:
class C:
def f(arg1, arg2, ...): ...
f = staticmethod(f)
It can be called either on the class (e.g. C.f()) or on an instance
(e.g. C().f()). The instance is ignored except for its class.""",
__get__ = interp2app(StaticMethod.descr_staticmethod_get),
__new__ = interp2app(StaticMethod.descr_staticmethod__new__.im_func),
__init__=interp2app(StaticMethod.descr_init),
__func__= interp_attrproperty_w('w_function', cls=StaticMethod),
__isabstractmethod__ = GetSetProperty(StaticMethod.descr_isabstract),
__dict__ = GetSetProperty(descr_get_dict, descr_set_dict,
cls=StaticMethod),
)
ClassMethod.typedef = TypeDef(
'classmethod',
__new__=interp2app(ClassMethod.descr_classmethod__new__.im_func),
__init__=interp2app(ClassMethod.descr_init),
__get__=interp2app(ClassMethod.descr_classmethod_get),
__func__=interp_attrproperty_w('w_function', cls=ClassMethod),
__isabstractmethod__=GetSetProperty(ClassMethod.descr_isabstract),
__dict__=GetSetProperty(descr_get_dict, descr_set_dict, cls=ClassMethod),
__doc__="""classmethod(function) -> class method
Convert a function to be a class method.
A class method receives the class as implicit first argument,
just like an instance method receives the instance.
To declare a class method, use this idiom:
class C:
def f(cls, arg1, arg2, ...): ...
f = classmethod(f)
It can be called either on the class (e.g. C.f()) or on an instance
(e.g. C().f()). The instance is ignored except for its class.
If a class method is called for a derived class, the derived class
object is passed as the implied first argument.""",
)
def always_none(self, obj):
return None
BuiltinFunction.typedef = TypeDef("builtin_function", **Function.typedef.rawdict)
BuiltinFunction.typedef.rawdict.update({
'__new__': interp2app(BuiltinFunction.descr_builtinfunction__new__.im_func),
'__self__': GetSetProperty(always_none, cls=BuiltinFunction),
'__repr__': interp2app(BuiltinFunction.descr_function_repr),
'__doc__': getset_func_doc,
'__reduce__': interp2app(BuiltinFunction.descr__reduce__),
})
del BuiltinFunction.typedef.rawdict['__get__']
BuiltinFunction.typedef.acceptable_as_base_class = False
PyTraceback.typedef = TypeDef("traceback",
__reduce__ = interp2app(PyTraceback.descr__reduce__),
__setstate__ = interp2app(PyTraceback.descr__setstate__),
__dir__ = interp2app(PyTraceback.descr__dir__),
tb_frame = interp_attrproperty_w('frame', cls=PyTraceback),
tb_lasti = interp_attrproperty('lasti', cls=PyTraceback, wrapfn="newint"),
tb_lineno = GetSetProperty(PyTraceback.descr_tb_lineno),
tb_next = interp_attrproperty_w('next', cls=PyTraceback),
)
assert not PyTraceback.typedef.acceptable_as_base_class # no __new__
GeneratorIterator.typedef = TypeDef("generator",
__repr__ = interp2app(GeneratorIterator.descr__repr__),
#__reduce__ = interp2app(GeneratorIterator.descr__reduce__),
#__setstate__ = interp2app(GeneratorIterator.descr__setstate__),
__next__ = interp2app(GeneratorIterator.descr_next,
descrmismatch='__next__'),
send = interp2app(GeneratorIterator.descr_send,
descrmismatch='send'),
throw = interp2app(GeneratorIterator.descr_throw,
descrmismatch='throw'),
close = interp2app(GeneratorIterator.descr_close,
descrmismatch='close'),
__iter__ = interp2app(GeneratorIterator.descr__iter__,
descrmismatch='__iter__'),
gi_running = interp_attrproperty('running', cls=GeneratorIterator, wrapfn="newbool"),
gi_frame = GetSetProperty(GeneratorIterator.descr_gicr_frame),
gi_code = interp_attrproperty_w('pycode', cls=GeneratorIterator),
gi_yieldfrom=interp_attrproperty_w('w_yielded_from', cls=GeneratorIterator),
__name__ = GetSetProperty(GeneratorIterator.descr__name__,
GeneratorIterator.descr_set__name__),
__qualname__ = GetSetProperty(GeneratorIterator.descr__qualname__,
GeneratorIterator.descr_set__qualname__),
__weakref__ = make_weakref_descr(GeneratorIterator),
)
assert not GeneratorIterator.typedef.acceptable_as_base_class # no __new__
Coroutine.typedef = TypeDef("coroutine",
__repr__ = interp2app(Coroutine.descr__repr__),
#__reduce__ = interp2app(Coroutine.descr__reduce__),
#__setstate__ = interp2app(Coroutine.descr__setstate__),
send = interp2app(Coroutine.descr_send,
descrmismatch='send'),
throw = interp2app(Coroutine.descr_throw,
descrmismatch='throw'),
close = interp2app(Coroutine.descr_close,
descrmismatch='close'),
__await__ = interp2app(Coroutine.descr__await__,
descrmismatch='__await__'),
cr_running = interp_attrproperty('running', cls=Coroutine, wrapfn="newbool"),
cr_frame = GetSetProperty(Coroutine.descr_gicr_frame),
cr_code = interp_attrproperty_w('pycode', cls=Coroutine),
cr_await = interp_attrproperty_w('w_yielded_from', cls=Coroutine),
__name__ = GetSetProperty(Coroutine.descr__name__,
Coroutine.descr_set__name__,
doc="name of the coroutine"),
__qualname__ = GetSetProperty(Coroutine.descr__qualname__,
Coroutine.descr_set__qualname__,
doc="qualified name of the coroutine"),
__weakref__ = make_weakref_descr(Coroutine),
)
assert not Coroutine.typedef.acceptable_as_base_class # no __new__
CoroutineWrapper.typedef = TypeDef("coroutine_wrapper",
__iter__ = interp2app(CoroutineWrapper.descr__iter__),
__next__ = interp2app(CoroutineWrapper.descr__next__),
send = interp2app(CoroutineWrapper.descr_send),
throw = interp2app(CoroutineWrapper.descr_throw),
close = interp2app(CoroutineWrapper.descr_close),
)
assert not CoroutineWrapper.typedef.acceptable_as_base_class # no __new__
AIterWrapper.typedef = TypeDef("aiter_wrapper",
__await__ = interp2app(AIterWrapper.descr__await__),
__iter__ = interp2app(AIterWrapper.descr__iter__),
__next__ = interp2app(AIterWrapper.descr__next__),
)
assert not AIterWrapper.typedef.acceptable_as_base_class # no __new__
Cell.typedef = TypeDef("cell",
__total_ordering__ = 'auto',
__lt__ = interp2app(Cell.descr__lt__),
__eq__ = interp2app(Cell.descr__eq__),
__hash__ = None,
__reduce__ = interp2app(Cell.descr__reduce__),
__repr__ = interp2app(Cell.descr__repr__),
__setstate__ = interp2app(Cell.descr__setstate__),
cell_contents= GetSetProperty(Cell.descr__cell_contents, cls=Cell),
)
assert not Cell.typedef.acceptable_as_base_class # no __new__
Ellipsis.typedef = TypeDef("ellipsis",
__new__ = interp2app(Ellipsis.descr_new_ellipsis),
__repr__ = interp2app(Ellipsis.descr__repr__),
__reduce__ = interp2app(Ellipsis.descr__reduce__),
)
Ellipsis.typedef.acceptable_as_base_class = False
NotImplemented.typedef = TypeDef("NotImplementedType",
__new__ = interp2app(NotImplemented.descr_new_notimplemented),
__repr__ = interp2app(NotImplemented.descr__repr__),
__reduce__ = interp2app(NotImplemented.descr__reduce__),
)
NotImplemented.typedef.acceptable_as_base_class = False
SuspendedUnroller.typedef = TypeDef("SuspendedUnroller")
SuspendedUnroller.typedef.acceptable_as_base_class = False
## W_OperationError.typedef = TypeDef("OperationError",
## __reduce__ = interp2app(W_OperationError.descr_reduce),
## __setstate__ = interp2app(W_OperationError.descr_setstate),
## )
## W_OperationError.typedef.acceptable_as_base_class = False
|