29.1.sys — System-specific parameters and functions¶
This module provides access to some variables used or maintained by theinterpreter and to functions that interact strongly with the interpreter. It isalways available.
sys.abiflags¶On POSIX systems where Python was built with the standard
configurescript, this contains the ABI flags as specified byPEP 3149.New in version 3.2.
sys.argv¶The list of command line arguments passed to a Python script.
argv[0]is thescript name (it is operating system dependent whether this is a full pathname ornot). If the command was executed using the-ccommand line option tothe interpreter,argv[0]is set to the string'-c'. If no script namewas passed to the Python interpreter,argv[0]is the empty string.To loop over the standard input, or the list of files given on thecommand line, see the
fileinputmodule.
sys.base_exec_prefix¶Set during Python startup, before
site.pyis run, to the same value asexec_prefix. If not running in avirtual environment, the values will stay the same; ifsite.pyfinds that a virtual environment is in use, the values ofprefixandexec_prefixwill be changed to point to thevirtual environment, whereasbase_prefixandbase_exec_prefixwill remain pointing to the base Pythoninstallation (the one which the virtual environment was created from).New in version 3.3.
sys.base_prefix¶Set during Python startup, before
site.pyis run, to the same value asprefix. If not running in avirtual environment, the valueswill stay the same; ifsite.pyfinds that a virtual environment is inuse, the values ofprefixandexec_prefixwill be changed topoint to the virtual environment, whereasbase_prefixandbase_exec_prefixwill remain pointing to the base Pythoninstallation (the one which the virtual environment was created from).New in version 3.3.
sys.byteorder¶An indicator of the native byte order. This will have the value
'big'onbig-endian (most-significant byte first) platforms, and'little'onlittle-endian (least-significant byte first) platforms.
sys.builtin_module_names¶A tuple of strings giving the names of all modules that are compiled into thisPython interpreter. (This information is not available in any other way —
modules.keys()only lists the imported modules.)
sys.call_tracing(func,args)¶Call
func(*args), while tracing is enabled. The tracing state is saved,and restored afterwards. This is intended to be called from a debugger froma checkpoint, to recursively debug some other code.
sys.copyright¶A string containing the copyright pertaining to the Python interpreter.
sys._clear_type_cache()¶Clear the internal type cache. The type cache is used to speed up attributeand method lookups. Use the functiononly to drop unnecessary referencesduring reference leak debugging.
This function should be used for internal and specialized purposes only.
sys._current_frames()¶Return a dictionary mapping each thread’s identifier to the topmost stack framecurrently active in that thread at the time the function is called. Note thatfunctions in the
tracebackmodule can build the call stack given such aframe.This is most useful for debugging deadlock: this function does not require thedeadlocked threads’ cooperation, and such threads’ call stacks are frozen for aslong as they remain deadlocked. The frame returned for a non-deadlocked threadmay bear no relationship to that thread’s current activity by the time callingcode examines the frame.
This function should be used for internal and specialized purposes only.
sys._debugmallocstats()¶Print low-level information to stderr about the state of CPython’s memoryallocator.
If Python is configured –with-pydebug, it also performs some expensiveinternal consistency checks.
New in version 3.3.
CPython implementation detail: This function is specific to CPython. The exact output format is notdefined here, and may change.
sys.dllhandle¶Integer specifying the handle of the Python DLL. Availability: Windows.
sys.displayhook(value)¶Ifvalue is not
None, this function printsrepr(value)tosys.stdout, and savesvalue inbuiltins._. Ifrepr(value)isnot encodable tosys.stdout.encodingwithsys.stdout.errorserrorhandler (which is probably'strict'), encode it tosys.stdout.encodingwith'backslashreplace'error handler.sys.displayhookis called on the result of evaluating anexpressionentered in an interactive Python session. The display of these values can becustomized by assigning another one-argument function tosys.displayhook.Pseudo-code:
defdisplayhook(value):ifvalueisNone:return# Set '_' to None to avoid recursionbuiltins._=Nonetext=repr(value)try:sys.stdout.write(text)exceptUnicodeEncodeError:bytes=text.encode(sys.stdout.encoding,'backslashreplace')ifhasattr(sys.stdout,'buffer'):sys.stdout.buffer.write(bytes)else:text=bytes.decode(sys.stdout.encoding,'strict')sys.stdout.write(text)sys.stdout.write("\n")builtins._=value
Changed in version 3.2:Use
'backslashreplace'error handler onUnicodeEncodeError.
sys.dont_write_bytecode¶If this is true, Python won’t try to write
.pycfiles on theimport of source modules. This value is initially set toTrueorFalsedepending on the-Bcommand line option and thePYTHONDONTWRITEBYTECODEenvironment variable, but you can set ityourself to control bytecode file generation.
sys.excepthook(type,value,traceback)¶This function prints out a given traceback and exception to
sys.stderr.When an exception is raised and uncaught, the interpreter calls
sys.excepthookwith three arguments, the exception class, exceptioninstance, and a traceback object. In an interactive session this happens justbefore control is returned to the prompt; in a Python program this happens justbefore the program exits. The handling of such top-level exceptions can becustomized by assigning another three-argument function tosys.excepthook.
sys.__displayhook__¶sys.__excepthook__¶These objects contain the original values of
displayhookandexcepthookat the start of the program. They are saved so thatdisplayhookandexcepthookcan be restored in case they happen to get replaced with brokenobjects.
sys.exc_info()¶This function returns a tuple of three values that give information about theexception that is currently being handled. The information returned is specificboth to the current thread and to the current stack frame. If the current stackframe is not handling an exception, the information is taken from the callingstack frame, or its caller, and so on until a stack frame is found that ishandling an exception. Here, “handling an exception” is defined as “executingan except clause.” For any stack frame, only information about the exceptionbeing currently handled is accessible.
If no exception is being handled anywhere on the stack, a tuple containingthree
Nonevalues is returned. Otherwise, the values returned are(type,value,traceback). Their meaning is:type gets the type of theexception being handled (a subclass ofBaseException);value getsthe exception instance (an instance of the exception type);traceback getsa traceback object (see the Reference Manual) which encapsulates the callstack at the point where the exception originally occurred.
sys.exec_prefix¶A string giving the site-specific directory prefix where the platform-dependentPython files are installed; by default, this is also
'/usr/local'. This canbe set at build time with the--exec-prefixargument to theconfigure script. Specifically, all configuration files (e.g. thepyconfig.hheader file) are installed in the directoryexec_prefix/lib/pythonX.Y/config, and shared library modules areinstalled inexec_prefix/lib/pythonX.Y/lib-dynload, whereX.Yis the version number of Python, for example3.2.Note
If avirtual environment is in effect, thisvalue will be changed in
site.pyto point to the virtual environment.The value for the Python installation will still be available, viabase_exec_prefix.
sys.executable¶A string giving the absolute path of the executable binary for the Pythoninterpreter, on systems where this makes sense. If Python is unable to retrievethe real path to its executable,
sys.executablewill be an empty stringorNone.
sys.exit([arg])¶Exit from Python. This is implemented by raising the
SystemExitexception, so cleanup actions specified by finally clauses oftrystatements are honored, and it is possible to intercept the exit attempt atan outer level.The optional argumentarg can be an integer giving the exit status(defaulting to zero), or another type of object. If it is an integer, zerois considered “successful termination” and any nonzero value is considered“abnormal termination” by shells and the like. Most systems require it to bein the range 0–127, and produce undefined results otherwise. Some systemshave a convention for assigning specific meanings to specific exit codes, butthese are generally underdeveloped; Unix programs generally use 2 for commandline syntax errors and 1 for all other kind of errors. If another type ofobject is passed,
Noneis equivalent to passing zero, and any otherobject is printed tostderrand results in an exit code of 1. Inparticular,sys.exit("someerrormessage")is a quick way to exit aprogram when an error occurs.Since
exit()ultimately “only” raises an exception, it will only exitthe process when called from the main thread, and the exception is notintercepted.
sys.flags¶Thestruct sequenceflags exposes the status of command lineflags. The attributes are read only.
attribute flag debug-dinspect-iinteractive-ioptimize-Oor-OOdont_write_bytecode-Bno_user_site-sno_site-Signore_environment-Everbose-vbytes_warning-bquiet-qhash_randomization-RChanged in version 3.2:Added
quietattribute for the new-qflag.New in version 3.2.3:The
hash_randomizationattribute.Changed in version 3.3:Removed obsolete
division_warningattribute.
sys.float_info¶Astruct sequence holding information about the float type. Itcontains low level information about the precision and internalrepresentation. The values correspond to the various floating-pointconstants defined in the standard header file
float.hfor the ‘C’programming language; see section 5.2.4.2.2 of the 1999 ISO/IEC C standard[C99], ‘Characteristics of floating types’, for details.attribute float.h macro explanation epsilonDBL_EPSILON difference between 1 and the least value greaterthan 1 that is representable as a float digDBL_DIG maximum number of decimal digits that can befaithfully represented in a float; see below mant_digDBL_MANT_DIG float precision: the number of base- radixdigits in the significand of a floatmaxDBL_MAX maximum representable finite float max_expDBL_MAX_EXP maximum integer e such that radix**(e-1)isa representable finite floatmax_10_expDBL_MAX_10_EXP maximum integer e such that 10**eis in therange of representable finite floatsminDBL_MIN minimum positive normalized float min_expDBL_MIN_EXP minimum integer e such that radix**(e-1)isa normalized floatmin_10_expDBL_MIN_10_EXP minimum integer e such that 10**eis anormalized floatradixFLT_RADIX radix of exponent representation roundsFLT_ROUNDS integer constant representing the rounding modeused for arithmetic operations. This reflectsthe value of the system FLT_ROUNDS macro atinterpreter startup time. See section 5.2.4.2.2of the C99 standard for an explanation of thepossible values and their meanings. The attribute
sys.float_info.digneeds further explanation. Ifsis any string representing a decimal number with at mostsys.float_info.digsignificant digits, then convertingsto afloat and back again will recover a string representing the same decimalvalue:>>>importsys>>>sys.float_info.dig15>>>s='3.14159265358979'# decimal string with 15 significant digits>>>format(float(s),'.15g')# convert to float and back -> same value'3.14159265358979'
But for strings with more than
sys.float_info.digsignificant digits,this isn’t always true:>>>s='9876543211234567'# 16 significant digits is too many!>>>format(float(s),'.16g')# conversion changes value'9876543211234568'
sys.float_repr_style¶A string indicating how the
repr()function behaves forfloats. If the string has value'short'then for a finitefloatx,repr(x)aims to produce a short string with theproperty thatfloat(repr(x))==x. This is the usual behaviourin Python 3.1 and later. Otherwise,float_repr_stylehas value'legacy'andrepr(x)behaves in the same way as it did inversions of Python prior to 3.1.New in version 3.1.
sys.getallocatedblocks()¶Return the number of memory blocks currently allocated by the interpreter,regardless of their size. This function is mainly useful for trackingand debugging memory leaks. Because of the interpreter’s internalcaches, the result can vary from call to call; you may have to call
_clear_type_cache()andgc.collect()to get morepredictable results.If a Python build or implementation cannot reasonably compute thisinformation,
getallocatedblocks()is allowed to return 0 instead.New in version 3.4.
sys.getcheckinterval()¶Return the interpreter’s “check interval”; see
setcheckinterval().Deprecated since version 3.2:Use
getswitchinterval()instead.
sys.getdefaultencoding()¶Return the name of the current default string encoding used by the Unicodeimplementation.
sys.getdlopenflags()¶Return the current value of the flags that are used for
dlopen()calls. Symbolic names for the flag values can befound in theosmodule (RTLD_xxxconstants, e.g.os.RTLD_LAZY). Availability: Unix.
sys.getfilesystemencoding()¶Return the name of the encoding used to convert Unicode filenames intosystem file names. The result value depends on the operating system:
- On Mac OS X, the encoding is
'utf-8'. - On Unix, the encoding is the user’s preference according to the result ofnl_langinfo(CODESET).
- On Windows NT+, file names are Unicode natively, so no conversion isperformed.
getfilesystemencoding()still returns'mbcs', asthis is the encoding that applications should use when they explicitlywant to convert Unicode strings to byte strings that are equivalent whenused as file names. - On Windows 9x, the encoding is
'mbcs'.
Changed in version 3.2:
getfilesystemencoding()result cannot beNoneanymore.- On Mac OS X, the encoding is
sys.getrefcount(object)¶Return the reference count of theobject. The count returned is generally onehigher than you might expect, because it includes the (temporary) reference asan argument to
getrefcount().
sys.getrecursionlimit()¶Return the current value of the recursion limit, the maximum depth of the Pythoninterpreter stack. This limit prevents infinite recursion from causing anoverflow of the C stack and crashing Python. It can be set by
setrecursionlimit().
sys.getsizeof(object[,default])¶Return the size of an object in bytes. The object can be any type ofobject. All built-in objects will return correct results, but thisdoes not have to hold true for third-party extensions as it is implementationspecific.
Only the memory consumption directly attributed to the object isaccounted for, not the memory consumption of objects it refers to.
If given,default will be returned if the object does not provide means toretrieve the size. Otherwise a
TypeErrorwill be raised.getsizeof()calls the object’s__sizeof__method and adds anadditional garbage collector overhead if the object is managed by the garbagecollector.Seerecursive sizeof recipefor an example of using
getsizeof()recursively to find the size ofcontainers and all their contents.
sys.getswitchinterval()¶Return the interpreter’s “thread switch interval”; see
setswitchinterval().New in version 3.2.
sys._getframe([depth])¶Return a frame object from the call stack. If optional integerdepth isgiven, return the frame object that many calls below the top of the stack. Ifthat is deeper than the call stack,
ValueErroris raised. The defaultfordepth is zero, returning the frame at the top of the call stack.CPython implementation detail: This function should be used for internal and specialized purposes only.It is not guaranteed to exist in all implementations of Python.
sys.getprofile()¶Get the profiler function as set by
setprofile().
sys.gettrace()¶Get the trace function as set by
settrace().CPython implementation detail: The
gettrace()function is intended only for implementing debuggers,profilers, coverage tools and the like. Its behavior is part of theimplementation platform, rather than part of the language definition, andthus may not be available in all Python implementations.
sys.getwindowsversion()¶Return a named tuple describing the Windows versioncurrently running. The named elements aremajor,minor,build,platform,service_pack,service_pack_minor,service_pack_major,suite_mask, andproduct_type.service_pack contains a string while all other values areintegers. The components can also be accessed by name, so
sys.getwindowsversion()[0]is equivalent tosys.getwindowsversion().major. For compatibility with priorversions, only the first 5 elements are retrievable by indexing.platform may be one of the following values:
Constant Platform 0(VER_PLATFORM_WIN32s)Win32s on Windows 3.1 1(VER_PLATFORM_WIN32_WINDOWS)Windows 95/98/ME 2(VER_PLATFORM_WIN32_NT)Windows NT/2000/XP/x64 3(VER_PLATFORM_WIN32_CE)Windows CE product_type may be one of the following values:
Constant Meaning 1(VER_NT_WORKSTATION)The system is a workstation. 2(VER_NT_DOMAIN_CONTROLLER)The system is a domaincontroller. 3(VER_NT_SERVER)The system is a server, but nota domain controller. This function wraps the Win32
GetVersionEx()function; see theMicrosoft documentation onOSVERSIONINFOEX()for more informationabout these fields.Availability: Windows.
Changed in version 3.2:Changed to a named tuple and addedservice_pack_minor,service_pack_major,suite_mask, andproduct_type.
sys.get_coroutine_wrapper()¶Returns
None, or a wrapper set byset_coroutine_wrapper().New in version 3.5:SeePEP 492 for more details.
Note
This function has been added on a provisional basis (seePEP 411for details.) Use it only for debugging purposes.
sys.hash_info¶Astruct sequence giving parameters of the numeric hashimplementation. For more details about hashing of numeric types, seeHashing of numeric types.
attribute explanation widthwidth in bits used for hash values modulusprime modulus P used for numeric hash scheme infhash value returned for a positive infinity nanhash value returned for a nan imagmultiplier used for the imaginary part of acomplex number algorithmname of the algorithm for hashing of str, bytes,and memoryview hash_bitsinternal output size of the hash algorithm seed_bitssize of the seed key of the hash algorithm New in version 3.2.
Changed in version 3.4:Addedalgorithm,hash_bits andseed_bits
sys.hexversion¶The version number encoded as a single integer. This is guaranteed to increasewith each version, including proper support for non-production releases. Forexample, to test that the Python interpreter is at least version 1.5.2, use:
ifsys.hexversion>=0x010502F0:# use some advanced feature...else:# use an alternative implementation or warn the user...
This is called
hexversionsince it only really looks meaningful when viewedas the result of passing it to the built-inhex()function. Thestruct sequencesys.version_infomay be used for a morehuman-friendly encoding of the same information.More details of
hexversioncan be found atAPI and ABI Versioning.
sys.implementation¶An object containing information about the implementation of thecurrently running Python interpreter. The following attributes arerequired to exist in all Python implementations.
name is the implementation’s identifier, e.g.
'cpython'. The actualstring is defined by the Python implementation, but it is guaranteed to belower case.version is a named tuple, in the same format as
sys.version_info. It represents the version of the Pythonimplementation. This has a distinct meaning from the specificversion of the Pythonlanguage to which the currently runninginterpreter conforms, whichsys.version_inforepresents. Forexample, for PyPy 1.8sys.implementation.versionmight besys.version_info(1,8,0,'final',0), whereassys.version_infowould besys.version_info(2,7,2,'final',0). For CPython theyare the same value, since it is the reference implementation.hexversion is the implementation version in hexadecimal format, like
sys.hexversion.cache_tag is the tag used by the import machinery in the filenames ofcached modules. By convention, it would be a composite of theimplementation’s name and version, like
'cpython-33'. However, aPython implementation may use some other value if appropriate. Ifcache_tagis set toNone, it indicates that module caching shouldbe disabled.sys.implementationmay contain additional attributes specific tothe Python implementation. These non-standard attributes must start withan underscore, and are not described here. Regardless of its contents,sys.implementationwill not change during a run of the interpreter,nor between implementation versions. (It may change between Pythonlanguage versions, however.) SeePEP 421 for more information.New in version 3.3.
sys.int_info¶Astruct sequence that holds information about Python’s internalrepresentation of integers. The attributes are read only.
Attribute Explanation bits_per_digitnumber of bits held in each digit. Pythonintegers are stored internally in base 2**int_info.bits_per_digitsizeof_digitsize in bytes of the C type used torepresent a digit New in version 3.1.
sys.__interactivehook__¶When this attribute exists, its value is automatically called (with noarguments) when the interpreter is launched ininteractive mode. This is done after the
PYTHONSTARTUPfile isread, so that you can set this hook there. Thesitemodulesets this.New in version 3.4.
sys.intern(string)¶Enterstring in the table of “interned” strings and return the interned string– which isstring itself or a copy. Interning strings is useful to gain alittle performance on dictionary lookup – if the keys in a dictionary areinterned, and the lookup key is interned, the key comparisons (after hashing)can be done by a pointer compare instead of a string compare. Normally, thenames used in Python programs are automatically interned, and the dictionariesused to hold module, class or instance attributes have interned keys.
Interned strings are not immortal; you must keep a reference to the returnvalue of
intern()around to benefit from it.
sys.is_finalizing()¶Return
Trueif the Python interpreter isshutting down,Falseotherwise.New in version 3.5.
sys.last_type¶sys.last_value¶sys.last_traceback¶These three variables are not always defined; they are set when an exception isnot handled and the interpreter prints an error message and a stack traceback.Their intended use is to allow an interactive user to import a debugger moduleand engage in post-mortem debugging without having to re-execute the commandthat caused the error. (Typical use is
importpdb;pdb.pm()to enter thepost-mortem debugger; seepdbmodule formore information.)The meaning of the variables is the same as that of the return values from
exc_info()above.
sys.maxsize¶An integer giving the maximum value a variable of type
Py_ssize_tcantake. It’s usually2**31-1on a 32-bit platform and2**63-1on a64-bit platform.
sys.maxunicode¶An integer giving the value of the largest Unicode code point,i.e.
1114111(0x10FFFFin hexadecimal).Changed in version 3.3:BeforePEP 393,
sys.maxunicodeused to be either0xFFFFor0x10FFFF, depending on the configuration option that specifiedwhether Unicode characters were stored as UCS-2 or UCS-4.
sys.meta_path¶A list ofmeta path finder objects that have their
find_spec()methods called to see if oneof the objects can find the module to be imported. Thefind_spec()method is called with atleast the absolute name of the module being imported. If the module to beimported is contained in a package, then the parent package’s__path__attribute is passed in as a second argument. The method returns amodule spec, orNoneif the module cannot be found.See also
importlib.abc.MetaPathFinder- The abstract base class defining the interface of finder objects on
meta_path. importlib.machinery.ModuleSpec- The concrete class which
find_spec()should returninstances of.
Changed in version 3.4:Module specs were introduced in Python 3.4, byPEP 451. Earlier versions of Python looked for a method called
find_module().This is still called as a fallback if ameta_pathentry doesn’thave afind_spec()method.
sys.modules¶This is a dictionary that maps module names to modules which have already beenloaded. This can be manipulated to force reloading of modules and other tricks.However, replacing the dictionary will not necessarily work as expected anddeleting essential items from the dictionary may cause Python to fail.
sys.path¶A list of strings that specifies the search path for modules. Initialized fromthe environment variable
PYTHONPATH, plus an installation-dependentdefault.As initialized upon program startup, the first item of this list,
path[0],is the directory containing the script that was used to invoke the Pythoninterpreter. If the script directory is not available (e.g. if the interpreteris invoked interactively or if the script is read from standard input),path[0]is the empty string, which directs Python to search modules in thecurrent directory first. Notice that the script directory is insertedbeforethe entries inserted as a result ofPYTHONPATH.A program is free to modify this list for its own purposes. Only stringsand bytes should be added to
sys.path; all other data types areignored during import.
sys.path_hooks¶A list of callables that take a path argument to try to create afinder for the path. If a finder can be created, it is to bereturned by the callable, else raise
ImportError.Originally specified inPEP 302.
sys.path_importer_cache¶A dictionary acting as a cache forfinder objects. The keys arepaths that have been passed to
sys.path_hooksand the values arethe finders that are found. If a path is a valid file system path but nofinder is found onsys.path_hooksthenNoneisstored.Originally specified inPEP 302.
Changed in version 3.3:
Noneis stored instead ofimp.NullImporterwhen no finderis found.
sys.platform¶This string contains a platform identifier that can be used to appendplatform-specific components to
sys.path, for instance.For Unix systems, except on Linux, this is the lowercased OS name asreturned by
uname-swith the first part of the version as returned byuname-rappended, e.g.'sunos5'or'freebsd8',at the timewhen Python was built. Unless you want to test for a specific systemversion, it is therefore recommended to use the following idiom:ifsys.platform.startswith('freebsd'):# FreeBSD-specific code here...elifsys.platform.startswith('linux'):# Linux-specific code here...
For other systems, the values are:
System platformvalueLinux 'linux'Windows 'win32'Windows/Cygwin 'cygwin'Mac OS X 'darwin'Changed in version 3.3:On Linux,
sys.platformdoesn’t contain the major version anymore.It is always'linux', instead of'linux2'or'linux3'. Sinceolder Python versions include the version number, it is recommended toalways use thestartswithidiom presented above.See also
os.namehas a coarser granularity.os.uname()givessystem-dependent version information.The
platformmodule provides detailed checks for thesystem’s identity.
sys.prefix¶A string giving the site-specific directory prefix where the platformindependent Python files are installed; by default, this is the string
'/usr/local'. This can be set at build time with the--prefixargument to theconfigure script. The main collection of Pythonlibrary modules is installed in the directoryprefix/lib/pythonX.Ywhile the platform independent header files (all exceptpyconfig.h) arestored inprefix/include/pythonX.Y, whereX.Y is the versionnumber of Python, for example3.2.Note
If avirtual environment is in effect, thisvalue will be changed in
site.pyto point to the virtualenvironment. The value for the Python installation will still beavailable, viabase_prefix.
sys.ps1¶sys.ps2¶Strings specifying the primary and secondary prompt of the interpreter. Theseare only defined if the interpreter is in interactive mode. Their initialvalues in this case are
'>>>'and'...'. If a non-string object isassigned to either variable, itsstr()is re-evaluated each time theinterpreter prepares to read a new interactive command; this can be used toimplement a dynamic prompt.
sys.setcheckinterval(interval)¶Set the interpreter’s “check interval”. This integer value determines how oftenthe interpreter checks for periodic things such as thread switches and signalhandlers. The default is
100, meaning the check is performed every 100Python virtual instructions. Setting it to a larger value may increaseperformance for programs using threads. Setting it to a value<=0 checksevery virtual instruction, maximizing responsiveness as well as overhead.Deprecated since version 3.2:This function doesn’t have an effect anymore, as the internal logic forthread switching and asynchronous tasks has been rewritten. Use
setswitchinterval()instead.
sys.setdlopenflags(n)¶Set the flags used by the interpreter for
dlopen()calls, such as whenthe interpreter loads extension modules. Among other things, this will enable alazy resolving of symbols when importing a module, if called assys.setdlopenflags(0). To share symbols across extension modules, call assys.setdlopenflags(os.RTLD_GLOBAL). Symbolic names for the flag valuescan be found in theosmodule (RTLD_xxxconstants, e.g.os.RTLD_LAZY).Availability: Unix.
sys.setprofile(profilefunc)¶Set the system’s profile function, which allows you to implement a Python sourcecode profiler in Python. See chapterThe Python Profilers for more information on thePython profiler. The system’s profile function is called similarly to thesystem’s trace function (see
settrace()), but it isn’t called for eachexecuted line of code (only on call and return, but the return event is reportedeven when an exception has been set). The function is thread-specific, butthere is no way for the profiler to know about context switches between threads,so it does not make sense to use this in the presence of multiple threads. Also,its return value is not used, so it can simply returnNone.
sys.setrecursionlimit(limit)¶Set the maximum depth of the Python interpreter stack tolimit. This limitprevents infinite recursion from causing an overflow of the C stack and crashingPython.
The highest possible limit is platform-dependent. A user may need to set thelimit higher when they have a program that requires deep recursion and a platformthat supports a higher limit. This should be done with care, because a too-highlimit can lead to a crash.
If the new limit is too low at the current recursion depth, a
RecursionErrorexception is raised.Changed in version 3.5.1:A
RecursionErrorexception is now raised if the new limit is toolow at the current recursion depth.
sys.setswitchinterval(interval)¶Set the interpreter’s thread switch interval (in seconds). This floating-pointvalue determines the ideal duration of the “timeslices” allocated toconcurrently running Python threads. Please note that the actual valuecan be higher, especially if long-running internal functions or methodsare used. Also, which thread becomes scheduled at the end of the intervalis the operating system’s decision. The interpreter doesn’t have itsown scheduler.
New in version 3.2.
sys.settrace(tracefunc)¶Set the system’s trace function, which allows you to implement a Pythonsource code debugger in Python. The function is thread-specific; for adebugger to support multiple threads, it must be registered using
settrace()for each thread being debugged.Trace functions should have three arguments:frame,event, andarg.frame is the current stack frame.event is a string:
'call','line','return','exception','c_call','c_return', or'c_exception'.arg depends on the event type.The trace function is invoked (withevent set to
'call') whenever a newlocal scope is entered; it should return a reference to a local tracefunction to be used that scope, orNoneif the scope shouldn’t be traced.The local trace function should return a reference to itself (or to anotherfunction for further tracing in that scope), or
Noneto turn off tracingin that scope.The events have the following meaning:
'call'- A function is called (or some other code block entered). Theglobal trace function is called;arg is
None; the return valuespecifies the local trace function. 'line'- The interpreter is about to execute a new line of code or re-execute thecondition of a loop. The local trace function is called;arg is
None; the return value specifies the new local trace function. SeeObjects/lnotab_notes.txtfor a detailed explanation of how thisworks. 'return'- A function (or other code block) is about to return. The local tracefunction is called;arg is the value that will be returned, or
Noneif the event is caused by an exception being raised. The trace function’sreturn value is ignored. 'exception'- An exception has occurred. The local trace function is called;arg is atuple
(exception,value,traceback); the return value specifies thenew local trace function. 'c_call'- A C function is about to be called. This may be an extension function ora built-in.arg is the C function object.
'c_return'- A C function has returned.arg is the C function object.
'c_exception'- A C function has raised an exception.arg is the C function object.
Note that as an exception is propagated down the chain of callers, an
'exception'event is generated at each level.For more information on code and frame objects, refer toThe standard type hierarchy.
CPython implementation detail: The
settrace()function is intended only for implementing debuggers,profilers, coverage tools and the like. Its behavior is part of theimplementation platform, rather than part of the language definition, andthus may not be available in all Python implementations.
sys.settscdump(on_flag)¶Activate dumping of VM measurements using the Pentium timestamp counter, ifon_flag is true. Deactivate these dumps ifon_flag is off. The function isavailable only if Python was compiled with
--with-tsc. To understandthe output of this dump, readPython/ceval.cin the Python sources.CPython implementation detail: This function is intimately bound to CPython implementation details andthus not likely to be implemented elsewhere.
sys.set_coroutine_wrapper(wrapper)¶Allows intercepting creation ofcoroutine objects (only ones thatare created by an
asyncdeffunction; generators decorated withtypes.coroutine()orasyncio.coroutine()will not beintercepted).Thewrapper argument must be either:
- a callable that accepts one argument (a coroutine object);
None, to reset the wrapper.
If called twice, the new wrapper replaces the previous one. The functionis thread-specific.
Thewrapper callable cannot define new coroutines directly or indirectly:
defwrapper(coro):asyncdefwrap(coro):returnawaitcororeturnwrap(coro)sys.set_coroutine_wrapper(wrapper)asyncdeffoo():pass# The following line will fail with a RuntimeError, because# ``wrapper`` creates a ``wrap(coro)`` coroutine:foo()
See also
get_coroutine_wrapper().New in version 3.5:SeePEP 492 for more details.
Note
This function has been added on a provisional basis (seePEP 411for details.) Use it only for debugging purposes.
sys.stdin¶sys.stdout¶sys.stderr¶File objects used by the interpreter for standardinput, output and errors:
stdinis used for all interactive input (including calls toinput());stdoutis used for the output ofprint()andexpressionstatements and for the prompts ofinput();- The interpreter’s own prompts and its error messages go to
stderr.
These streams are regulartext files like thosereturned by the
open()function. Their parameters are chosen asfollows:The character encoding is platform-dependent. Under Windows, if the streamis interactive (that is, if its
isatty()method returnsTrue), theconsole codepage is used, otherwise the ANSI code page. Under otherplatforms, the locale encoding is used (seelocale.getpreferredencoding()).Under all platforms though, you can override this value by setting the
PYTHONIOENCODINGenvironment variable before starting Python.When interactive, standard streams are line-buffered. Otherwise, theyare block-buffered like regular text files. You can override thisvalue with the
-ucommand-line option.
Note
To write or read binary data from/to the standard streams, use theunderlying binary
bufferobject. For example, towrite bytes tostdout, usesys.stdout.buffer.write(b'abc').However, if you are writing a library (and do not control in whichcontext its code will be executed), be aware that the standard streamsmay be replaced with file-like objects like
io.StringIOwhichdo not support thebufferattribute.
sys.__stdin__¶sys.__stdout__¶sys.__stderr__¶These objects contain the original values of
stdin,stderrandstdoutat the start of the program. They are used during finalization,and could be useful to print to the actual standard stream no matter if thesys.std*object has been redirected.It can also be used to restore the actual files to known working file objectsin case they have been overwritten with a broken object. However, thepreferred way to do this is to explicitly save the previous stream beforereplacing it, and restore the saved object.
Note
Under some conditions
stdin,stdoutandstderras well as theoriginal values__stdin__,__stdout__and__stderr__can beNone. It is usually the case for Windows GUI apps that aren’t connectedto a console and Python apps started withpythonw.
sys.thread_info¶Astruct sequence holding information about the threadimplementation.
Attribute Explanation nameName of the thread implementation:
'nt': Windows threads'pthread': POSIX threads'solaris': Solaris threads
lockName of the lock implementation:
'semaphore': a lock uses a semaphore'mutex+cond': a lock uses a mutexand a condition variableNoneif this information is unknown
versionName and version of the thread library. It is a string,or Noneif this information is unknown.New in version 3.3.
sys.tracebacklimit¶When this variable is set to an integer value, it determines the maximum numberof levels of traceback information printed when an unhandled exception occurs.The default is
1000. When set to0or less, all traceback informationis suppressed and only the exception type and value are printed.
sys.version¶A string containing the version number of the Python interpreter plus additionalinformation on the build number and compiler used. This string is displayedwhen the interactive interpreter is started. Do not extract version informationout of it, rather, use
version_infoand the functions provided by theplatformmodule.
sys.api_version¶The C API version for this interpreter. Programmers may find this useful whendebugging version conflicts between Python and extension modules.
sys.version_info¶A tuple containing the five components of the version number:major,minor,micro,releaselevel, andserial. All values exceptreleaselevel areintegers; the release level is
'alpha','beta','candidate', or'final'. Theversion_infovalue corresponding to the Python version 2.0is(2,0,0,'final',0). The components can also be accessed by name,sosys.version_info[0]is equivalent tosys.version_info.majorand so on.Changed in version 3.1:Added named component attributes.
sys.warnoptions¶This is an implementation detail of the warnings framework; do not modify thisvalue. Refer to the
warningsmodule for more information on the warningsframework.
sys.winver¶The version number used to form registry keys on Windows platforms. This isstored as string resource 1000 in the Python DLL. The value is normally thefirst three characters of
version. It is provided in thesysmodule for informational purposes; modifying this value has no effect on theregistry keys used by Python. Availability: Windows.
sys._xoptions¶A dictionary of the various implementation-specific flags passed throughthe
-Xcommand-line option. Option names are either mapped totheir values, if given explicitly, or toTrue. Example:$./python-Xa=b-XcPython 3.2a3+ (py3k, Oct 16 2010, 20:14:50)[GCC 4.4.3] on linux2Type "help", "copyright", "credits" or "license" for more information.>>> import sys>>> sys._xoptions{'a': 'b', 'c': True}
CPython implementation detail: This is a CPython-specific way of accessing options passed through
-X. Other implementations may export them through othermeans, or not at all.New in version 3.2.
Citations
| [C99] | ISO/IEC 9899:1999. “Programming languages – C.” A public draft of this standard is available athttp://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf. |
