IP : 3.15.214.238Hostname : host45.registrar-servers.comKernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64Disable Function : None :) OS : Linux
PATH:
/
home/
../
lib64/
pkgconfig/
../
./
X11/
../
xtables/
../
mysql/
../
python2.7/
./
types.py/
/
"""Define names for all type symbols known in the standard interpreter.
Types that are part of optional modules (e.g. array) are not listed. """ import sys
# Iterators in Python aren't a matter of type but of protocol. A large # and changing number of builtin types implement *some* flavor of # iterator. Don't check the type! Use hasattr to check for both # "__iter__" and "next" attributes instead.
NoneType = type(None) TypeType = type ObjectType = object
IntType = int LongType = long FloatType = float BooleanType = bool try: ComplexType = complex except NameError: pass
StringType = str
# StringTypes is already outdated. Instead of writing "type(x) in # types.StringTypes", you should use "isinstance(x, basestring)". But # we keep around for compatibility with Python 2.2. try: UnicodeType = unicode StringTypes = (StringType, UnicodeType) except NameError: StringTypes = (StringType,)
# For Jython, the following two types are identical GetSetDescriptorType = type(FunctionType.func_code) MemberDescriptorType = type(FunctionType.func_globals)
del sys, _f, _g, _C, _x # Not for export
__all__ = list(n for n in globals() if n[:1] != '_')