Home | History | Annotate | Download | only in lib

Lines Matching full:__builtin__

4335 ((08(08@HP(08@H__getslice__ not supported for exception classes in 3.x; use args attribute__getitem__ not supported for exception classes in 3.x; use args attributex%02xu%04xcan't translate character u'\%s' in position %zd: %.400scan't translate characters in position %zd-%zd: %.400s%02x'%.400s' codec can't decode byte 0x%s in position %zd: %.400s'%.400s' codec can't decode bytes in position %zd-%zd: %.400s'%.400s' codec can't encode character u'\%s' in position %zd: %.400s'%.400s' codec can't encode characters in position %zd-%zd: %.400s???%s (%s, line %ld)%s (%s)%s (line %ld)message__dict__ may not be deleted__dict__ must be a dictionarymessage attribute was deletedBaseException.message has been deprecated as of Python 2.6args may not be deletedstate is not a dictionaryO!O!nnO![Errno %s] %s: %s[Errno %s] %sO!nnO!EnvironmentErrortuple index out of range%.200s attribute not set%.200s attribute must be strobject%.200s attribute must be unicodeencodingreasonsu#nnsss#nnsu#nnsexceptions bootstrapping error.exceptions__builtin__BaseExceptionModule dictionary insertion problem.ExceptionStandardErrorTypeErrorStopIterationGeneratorExitSystemExitKeyboardInterruptImportErrorIOErrorOSErrorEOFErrorRuntimeErrorNotImplementedErrorNameErrorUnboundLocalErrorAttributeErrorSyntaxErrorIndentationErrorTabErrorLookupErrorIndexErrorKeyErrorValueErrorUnicodeErrorUnicodeEncodeErrorUnicodeDecodeErrorUnicodeTranslateErrorAssertionErrorArithmeticErrorFloatingPointErrorOverflowErrorZeroDivisionErrorSystemErrorReferenceErrorMemoryErrorBufferErrorWarningUserWarningDeprecationWarningPendingDeprecationWarningSyntaxWarningRuntimeWarningFutureWarningImportWarningUnicodeWarningBytesWarningCannot pre-allocate MemoryError instanceCannot pre-allocate RuntimeError instance for recursion errorsmaximum recursion depth exceededcannot allocate argument for RuntimeError pre-allocationcannot allocate tuple for RuntimeError pre-allocationinit of pre-allocated RuntimeError failedexceptions.BaseExceptionCommon base class for all exceptionsexceptions.ExceptionCommon base class for all non-exit exceptions.exceptions.StandardErrorBase class for all standard Python exceptions that do not represent
11579 __builtin__<%s.%s object at %p><%s object at %p>classtype<%s '%s.%s'><%s '%s'>__get__(None, None) is invalid__setattr__object.__init__() takes no parameterstype.__init__() takes no keyword argumentstype.__init__() takes 1 or 3 argumentsNULL<super: <class '%s'>, <%s object>><super: <class '%s'>, NULL>Out of memory interning slotdef namescan't set %s.__module__can't delete %s.__module__%s.__cmp__(x,y) requires y to be a '%s', not a '%s'__new__() called with non-type 'self'%s.__new__(): not enough arguments%s.__new__(X): X is not a type object (%s)%s.__new__(%s): %s is not a subtype of %s%s.__new__(%s) is not safe, use %s.__new__()super(type, obj): obj must be an instance or subtype of typesuperO!|O:supercannot create '%.100s' instances__init____init__() should return None, not '%.200s'__iter____getitem__'%.200s' object is not iterable__call____hash____eq____cmp____repr____str____contains__in 3.x, __delslice__ has been removed; use __delitem__(nn)__delslice__in 3.x, __setslice__ has been removed; use __setitem__(nnO)__setslice__(n)__delitem__(nO)__setitem__in 3.x, __getslice__ has been removed; use __getitem____getslice__(O)(OO)()__len____len__() should return >= 0__index____itruediv____ifloordiv____ior____ixor____iand____irshift____ilshift____ipow____imod____idiv____imul____isub____iadd____hex____oct____float____long____int____invert____abs____pos____neg____delete____set__next__getattribute____rtruediv____truediv____rfloordiv____floordiv____coerce____coerce__ didn't return a 2-tuple__ror____or____rxor____xor____rand____and____rrshift____rshift____rlshift____lshift____rpow____pow____rdivmod____divmod____rmod____mod____rdiv____div____rmul____mul____rsub____sub____radd____add____nonzero__%s should return bool or int, returned %s__del____get____getattr__can't set attributes of built-in/extension type '%s'This object has no __dict____dict__ must be set to a dictionary, not a '%.200s'method cannot be both class and staticOverriding __eq__ blocks inheritance of __hash__ in 3.xtype '%.100s' participates in gc and is a base type but has inappropriate tp_free slotbases must be typesmultiple bases have instance lay-out conflicta new-style class can't have only classic basesduplicate base class %s[O]mromro() returned a non-class ('%.500s')mro() returned base with unsuitable layout ('%.500s')can't set %s.__bases__can't delete %s.__bases__can only assign tuple to %s.__bases__, not %scan only assign non-empty tuple to %s.__bases__, not ()%s.__bases__ must be tuple of old- or new-style classes, not '%s'a __bases__ item causes an inheritance cycle__bases__type() takes 1 or 3 argumentsSO!O!:typemetaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its basestype '%.100s' is not an acceptable base type__slots__nonempty __slots__ not supported for subtype of '%s'__slots__ items must be strings, not '%.200s'__slots__ must be identifiers__dict__ slot disallowed: we already got one__weakref____weakref__ slot disallowed: either we already got one, or __itemsize__ != 0attribute name must be string, not '%.200s'type object '%.50s' has no attribute '%.400s'objectThe most base typex.__cmp__(y) <==> cmp(x,y)x.__repr__() <==> repr(x)x.__hash__() <==> hash(x)x.__call__(...) <==> x(...)x.__str__() <==> str(x)x.__getattribute__('name') <==> x.namex.__setattr__('name', value) <==> x.name = valuex.__delattr__('name') <==> del x.name__lt__x.__lt__(y) <==> x<y__le__x.__le__(y) <==> x<=yx.__eq__(y) <==> x==y__ne__x.__ne__(y) <==> x!=y__gt__x.__gt__(y) <==> x>y__ge__x.__ge__(y) <==> x>=yx.__iter__() <==> iter(x)x.next() -> the next value, or raise StopIterationdescr.__get__(obj[, type]) -> valuedescr.__set__(obj, value)descr.__delete__(obj)x.__init__(...) initializes x; see help(type(x)) for signaturex.__add__(y) <==> x+yx.__radd__(y) <==> y+xx.__sub__(y) <==> x-yx.__rsub__(y) <==> y-xx.__mul__(y) <==> x*yx.__rmul__(y) <==> y*xx.__div__(y) <==> x/yx.__rdiv__(y) <==> y/xx.__mod__(y) <==> x%yx.__rmod__(y) <==> y%xx.__divmod__(y) <==> divmod(x, y)x.__rdivmod__(y) <==> divmod(y, x)x.__pow__(y[, z]) <==> pow(x, y[, z])y.__rpow__(x[, z]) <==> pow(x, y[, z])x.__neg__() <==> -xx.__pos__() <==> +xx.__abs__() <==> abs(x)x.__nonzero__() <==> x != 0x.__invert__() <==> ~xx.__lshift__(y) <==> x<<yx.__rlshift__(y) <==> y<<xx.__rshift__(y) <==> x>>yx.__rrshift__(y) <==> y>>xx.__and__(y) <==> x&yx.__rand__(y) <==> y&xx.__xor__(y) <==> x^yx.__rxor__(y) <==> y^xx.__or__(y) <==> x|yx.__ror__(y) <==> y|xx.__coerce__(y) <==> coerce(x, y)x.__int__() <==> int(x)x.__long__() <==> long(x)x.__float__() <==> float(x)x.__oct__() <==> oct(x)x.__hex__() <==> hex(x)x.__iadd__(y) <==> x+=yx.__isub__(y) <==> x-=yx.__imul__(y) <==> x*=yx.__idiv__(y) <==> x/=yx.__imod__(y) <==> x%=yx.__ipow__(y) <==> x**=yx.__ilshift__(y) <==> x<<=yx.__irshift__(y) <==> x>>=yx.__iand__(y) <==> x&=yx.__ixor__(y) <==> x^=yx.__ior__(y) <==> x|=yx.__floordiv__(y) <==> x//yx.__rfloordiv__(y) <==> y//xx.__truediv__(y) <==> x/yx.__rtruediv__(y) <==> y/xx.__ifloordiv__(y) <==> x//yx.__itruediv__(y) <==> x/yx[y:z] <==> x[y.__index__():z.__index__()]x.__len__() <==> len(x)x.__getitem__(y) <==> x[y]x.__setitem__(i, y) <==> x[i]=yx.__delitem__(y) <==> del x[y]x.__mul__(n) <==> x*nx.__rmul__(n) <==> n*xx.__getslice__(i, j) <==> x[i:j]
18007 __builtin__NoneEllipsisNotImplementedFalseTruebasestringboolmemoryviewbytearraybytesbufferclassmethodcomplexdictenumeratefilefloatfrozensetpropertyintlistlongobjectreversedsetslicestaticmethodstrsupertupletypexrangeunicode__debug____import__absallanybincallablechrcompileexecfileformatglobalshashhexidinputinternlenlocalsmapoctopenordprintraw_inputreloadreprroundsortedunichrzipiterablereversenumberndigitssepsourcefilenamemodeflagsdont_inheritnamefromlistlevelGCC: (GNU) 4.6.x-google 20120106 (prerelease)zRx ?`YB?E?B ?B(?E0?D8?FPQ
20645 No module named %.200ss:is_frozens:is_builtins:get_frozen_objectNo such frozen object named %.200sExcluded frozen object named %.200ss:new_modulessis|O:find_moduleOs(ssi)NullImporter()s:NullImporterempty pathnameexisting directorybad/closed file objectss|O!:load_dynamicrCan't initialize import file table..pyc.pyonot holding the import lockPyImport_GetModuleDict: no module dictionary!__builtin__# clear __builtin__._
20652 # cleanup __builtin__
22072 Py_EndInterpreter: thread is not currentPy_EndInterpreter: thread still has a framePy_EndInterpreter: not the last thread__main__can't create __main__ module__builtins____builtin__can't add __builtins__ to __main__codelast_typelast_valuelast_tracebackexcepthookError in sys.excepthook:
22078 sitePy_NewInterpreter: call Py_Initialize firstsysmodules<stdin>???PYTHONDEBUGPYTHONVERBOSEPYTHONOPTIMIZEPYTHONDONTWRITEBYTECODEPYTHONHASHSEEDPy_Initialize: can't make first interpreterPy_Initialize: can't make first threadPy_Initialize: can't init framesPy_Initialize: can't init intsPy_Initialize: can't init longsPy_Initialize: can't init bytearrayPy_Initialize: can't make modules dictionaryPy_Initialize: can't make modules_reloading dictionaryPy_Initialize: can't initialize __builtin__Py_Initialize: can't initialize builtins dictPy_Initialize: can't initialize sysPy_Initialize: can't initialize sys dictPYTHONIOENCODINGstdinisattyCannot set codeset of stdinstdoutCannot set codeset of stdoutCannot set codeset of stderrpythonUSH??(H?T$H?t$H?|$????t?H?=1??H?|$H????H????H?GH=t ???@tA??H??H??t/H?T$H?H??H??H?u H?|$H?G?P01?H??H?l$toH?|$H?G????t ????T??H???H?|$tH=t
22779 displayhook() -- print an object to the screen, and save it in __builtin__._
22822 Print an object to sys.stdout and also save it in __builtin__._
22906 Flags provided through command line arguments or environment vars.(OOO)i:setdlopenflagsi:setcheckintervalOO!:call_tracings:setdefaultencodingO|O:getsizeof__sizeof__Type %.100s doesn't define __sizeof__exitexcepthookunknown|i:_getframecall stack is not deep enoughi:setrecursionlimitrecursion limit must be positive... truncated__builtin__lost __builtin___stdoutlost sys.stdoutsys.exc_clear() not supported in 3.x; use except clausesexc_typeexc_valueexc_tracebackcan't create sys.pathpathcan't assign sys.pathno mem for sys.argvargvcan't assign sys.argv-cno mem for sys.path insertionsys.path.insert(0) failedstderrbiglittlesysPython error: <stdin> is a directory, cannot continue
23870 ELF>?@@ posixthreadsignalerrno_sre_codecs_weakrefzipimport_symtablexxsubtypemarshalimp_ast__main____builtin__sysexceptionsgc_warningsGCC: (GNU) 4.6.x-google 20120106 (prerelease).symtab.strtab.shstrtab.text.rela.data.bss.rodata.str1.1.comment.note.GNU-stack@&@@!h0 ,?12??@0/I??YX@