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.Changed in version 3.8:Default flags became an empty string (
mflag for pymalloc has beenremoved).New in version 3.2.
sys.addaudithook(hook)¶Append the callablehook to the list of active auditing hooks for thecurrent (sub)interpreter.
When an auditing event is raised through the
sys.audit()function, eachhook will be called in the order it was added with the event name and thetuple of arguments. Native hooks added byPySys_AddAuditHook()arecalled first, followed by hooks added in the current (sub)interpreter. Hookscan then log the event, raise an exception to abort the operation,or terminate the process entirely.Calling
sys.addaudithook()will itself raise an auditing eventnamedsys.addaudithookwith no arguments. If anyexisting hooks raise an exception derived fromRuntimeError, thenew hook will not be added and the exception suppressed. As a result,callers cannot assume that their hook has been added unless they controlall existing hooks.See theaudit events table for all events raised byCPython, andPEP 578 for the original design discussion.
New in version 3.8.
Changed in version 3.8.1:Exceptions derived from
Exceptionbut notRuntimeErrorare no longer suppressed.CPython implementation detail: When tracing is enabled (see
settrace()), Python hooks are onlytraced if the callable has a__cantrace__member that is set to atrue value. Otherwise, trace functions will skip the hook.
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.Note
On Unix, command line arguments are passed by bytes from OS. Python decodesthem with filesystem encoding and “surrogateescape” error handler.When you need original bytes, you can get it by
[os.fsencode(arg)forarginsys.argv].
sys.audit(event,*args)¶Raise an auditing event and trigger any active auditing hooks.event is a string identifying the event, andargs may containoptional arguments with more information about the event. Thenumber and types of arguments for a given event are considered apublic and stable API and should not be modified between releases.
For example, one auditing event is named
os.chdir. This event hasone argument calledpath that will contain the requested newworking directory.sys.audit()will call the existing auditing hooks, passingthe event name and arguments, and will re-raise the first exceptionfrom any hook. In general, if an exception is raised, it should notbe handled and the process should be terminated as quickly aspossible. This allows hook implementations to decide how to respondto particular events: they can merely log the event or abort theoperation by raising an exception.Hooks are added using the
sys.addaudithook()orPySys_AddAuditHook()functions.The native equivalent of this function is
PySys_Audit(). Using thenative function is preferred when possible.See theaudit events table for all events raised byCPython.
New in version 3.8.
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.
Raises anauditing event
sys._current_frameswith no arguments.
sys.breakpointhook()¶This hook function is called by built-in
breakpoint(). By default,it drops you into thepdbdebugger, but it can be set to any otherfunction so that you can choose which debugger gets used.The signature of this function is dependent on what it calls. For example,the default binding (e.g.
pdb.set_trace()) expects no arguments, butyou might bind it to a function that expects additional arguments(positional and/or keyword). The built-inbreakpoint()function passesits*argsand**kwsstraight through. Whateverbreakpointhooks()returns is returned frombreakpoint().The default implementation first consults the environment variable
PYTHONBREAKPOINT. If that is set to"0"then this functionreturns immediately; i.e. it is a no-op. If the environment variable isnot set, or is set to the empty string,pdb.set_trace()is called.Otherwise this variable should name a function to run, using Python’sdotted-import nomenclature, e.g.package.subpackage.module.function.In this case,package.subpackage.modulewould be imported and theresulting module must have a callable namedfunction(). This is run,passing in*argsand**kws, and whateverfunction()returns,sys.breakpointhook()returns to the built-inbreakpoint()function.Note that if anything goes wrong while importing the callable named by
PYTHONBREAKPOINT, aRuntimeWarningis reported and thebreakpoint is ignored.Also note that if
sys.breakpointhook()is overridden programmatically,PYTHONBREAKPOINTisnot consulted.New in version 3.7.
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.pycache_prefix¶If this is set (not
None), Python will write bytecode-cache.pycfiles to (and read them from) a parallel directory tree rooted at thisdirectory, rather than from__pycache__directories in the source codetree. Any__pycache__directories in the source code tree will be ignoredand new.pyc files written within the pycache prefix. Thus if you usecompileallas a pre-build step, you must ensure you run it with thesame pycache prefix (if any) that you will use at runtime.A relative path is interpreted relative to the current working directory.
This value is initially set based on the value of the
-Xpycache_prefix=PATHcommand-line option or thePYTHONPYCACHEPREFIXenvironment variable (command-line takesprecedence). If neither are set, it isNone.New in version 3.8.
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.Raise an auditing event
sys.excepthookwith argumentshook,type,value,tracebackwhen an uncaught exception occurs.If no hook has been set,hookmay beNone. If any hook raisesan exception derived fromRuntimeErrorthe call to the hook willbe suppressed. Otherwise, the audit hook exception will be reported asunraisable andsys.excepthookwill be called.See also
The
sys.unraisablehook()function handles unraisable exceptionsand thethreading.excepthook()function handles exception raisedbythreading.Thread.run().
sys.__breakpointhook__¶sys.__displayhook__¶sys.__excepthook__¶sys.__unraisablehook__¶These objects contain the original values of
breakpointhook,displayhook,excepthook, andunraisablehookat the start of theprogram. They are saved so thatbreakpointhook,displayhookandexcepthook,unraisablehookcan be restored in case they happen toget replaced with broken or alternative objects.New in version 3.7:__breakpointhook__
New in version 3.8:__unraisablehook__
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 getsatraceback object 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.Changed in version 3.6:If an error occurs in the cleanup after the Python interpreterhas caught
SystemExit(such as an error flushing buffered datain the standard streams), the exit status is changed to 120.
sys.flags¶Thenamed tupleflags exposes the status of command lineflags. The attributes are read only.
attribute
flag
debuginteractiveisolatedoptimizeno_user_siteno_siteignore_environmentverbosebytes_warningquiethash_randomizationdev_mode-Xdevutf8_mode-Xutf8int_max_str_digits-Xint_max_str_digits(integer string conversion length limitation)Changed 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.Changed in version 3.4:Added
isolatedattribute for-Iisolatedflag.Changed in version 3.7:Added
dev_modeattribute for the new-Xdevflagandutf8_modeattribute for the new-Xutf8flag.Changed in version 3.8.14:Added the
int_max_str_digitsattribute.
sys.float_info¶Anamed tuple 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.0 and the least valuegreater than 1.0 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 floatDBL_MAX
maximum representable positive finite float
max_expDBL_MAX_EXP
maximum integere such that
radix**(e-1)isa representable finite floatmax_10_expDBL_MAX_10_EXP
maximum integere such that
10**eis in therange of representable finite floatsDBL_MIN
minimum representable positivenormalized float
min_expDBL_MIN_EXP
minimum integere such that
radix**(e-1)isa normalized floatmin_10_expDBL_MIN_10_EXP
minimum integere 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.getandroidapilevel()¶Return the build time API version of Android as an integer.
Availability: Android.
New in version 3.7.
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 between Unicodefilenames and bytes filenames. For best compatibility, str should beused for filenames in all cases, although representing filenames as bytesis also supported. Functions accepting or returning filenames should supporteither str or bytes and internally convert to the system’s preferredrepresentation.
This encoding is always ASCII-compatible.
os.fsencode()andos.fsdecode()should be used to ensure thatthe correct encoding and errors mode are used.In the UTF-8 mode, the encoding is
utf-8on any platform.On macOS, the encoding is
'utf-8'.On Unix, the encoding is the locale encoding.
On Windows, the encoding may be
'utf-8'or'mbcs', dependingon user configuration.On Android, the encoding is
'utf-8'.On VxWorks, the encoding is
'utf-8'.
Changed in version 3.2:
getfilesystemencoding()result cannot beNoneanymore.Changed in version 3.6:Windows is no longer guaranteed to return
'mbcs'. SeePEP 529and_enablelegacywindowsfsencoding()for more information.Changed in version 3.7:Return ‘utf-8’ in the UTF-8 mode.
sys.getfilesystemencodeerrors()¶Return the name of the error mode used to convert between Unicode filenamesand bytes filenames. The encoding name is returned from
getfilesystemencoding().os.fsencode()andos.fsdecode()should be used to ensure thatthe correct encoding and errors mode are used.New in version 3.6.
sys.get_int_max_str_digits()¶Returns the current value for theinteger string conversion lengthlimitation. See also
set_int_max_str_digits().New in version 3.8.14.
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.Raises anauditing event
sys._getframewith no arguments.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,product_type andplatform_version.service_pack contains a string,platform_version a 3-tuple and 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 will be
2(VER_PLATFORM_WIN32_NT).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.platform_version returns the major version, minor version andbuild number of the current operating system, rather than the version thatis being emulated for the process. It is intended for use in logging ratherthan for feature detection.
Note
platform_version derives the version from kernel32.dll which can be of a differentversion than the OS version. Please use
platformmodule for achieving accurateOS version.Availability: Windows.
Changed in version 3.2:Changed to a named tuple and addedservice_pack_minor,service_pack_major,suite_mask, andproduct_type.
Changed in version 3.6:Addedplatform_version
sys.get_asyncgen_hooks()¶Returns anasyncgen_hooks object, which is similar to a
namedtupleof the form(firstiter, finalizer),wherefirstiter andfinalizer are expected to be eitherNoneorfunctions which take anasynchronous generator iterator as anargument, and are used to schedule finalization of an asynchronousgenerator by an event loop.New in version 3.6:SeePEP 525 for more details.
Note
This function has been added on a provisional basis (seePEP 411for details.)
sys.get_coroutine_origin_tracking_depth()¶Get the current coroutine origin tracking depth, as set by
set_coroutine_origin_tracking_depth().New in version 3.7.
Note
This function has been added on a provisional basis (seePEP 411for details.) Use it only for debugging purposes.
sys.hash_info¶Anamed tuple 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. Thenamed tuplesys.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.
Note
The addition of new required attributes must go through the normal PEPprocess. SeePEP 421 for more information.
sys.int_info¶Anamed tuple 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
default_max_str_digitsdefault value for
sys.get_int_max_str_digits()when itis not otherwise explicitly configured.str_digits_check_thresholdminimum non-zero value for
sys.set_int_max_str_digits(),PYTHONINTMAXSTRDIGITS, or-Xint_max_str_digits.New in version 3.1.
Changed in version 3.8.14:Added
default_max_str_digitsandstr_digits_check_threshold.
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.Raises anauditing event
cpython.run_interactivehookwith the hook object as the argument whenthe hook is called on startup.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.MetaPathFinderThe abstract base class defining the interface of finder objects on
meta_path.importlib.machinery.ModuleSpecThe 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 and AIX, 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...elifsys.platform.startswith('aix'):# AIX-specific code here...
For other systems, the values are:
System
platformvalueAIX
'aix'Linux
'linux'Windows
'win32'Windows/Cygwin
'cygwin'macOS
'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.Changed in version 3.8:On AIX,
sys.platformdoesn’t contain the major version anymore.It is always'aix', instead of'aix5'or'aix7'. 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.set_int_max_str_digits(n)¶Set theinteger string conversion length limitation used by this interpreter. See also
get_int_max_str_digits().New in version 3.8.14.
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 is called with different events,for example it isn’t called for each executed line of code (only on call and return,but the return event is reported even when an exception has been set). The function isthread-specific, but there is no way for the profiler to know about context switches betweenthreads, 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. Error in the profilefunction will cause itself unset.Profile functions should have three arguments:frame,event, andarg.frame is the current stack frame.event is a string:
'call','return','c_call','c_return', or'c_exception'.arg dependson the event type.Raises anauditing event
sys.setprofilewith no arguments.The events have the following meaning:
'call'A function is called (or some other code block entered). Theprofile function is called;arg is
None.'return'A function (or other code block) is about to return. The profilefunction is called;arg is the value that will be returned, or
Noneif the event is caused by an exception being raised.'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.
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 register a trace function using
settrace()for each thread being debugged or usethreading.settrace().Trace functions should have three arguments:frame,event, andarg.frame is the current stack frame.event is a string:
'call','line','return','exception'or'opcode'.arg depends onthe 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 for the new scope, orNoneif the scope shouldn’t betraced.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.If there is any error occurred in the trace function, it will be unset, justlike
settrace(None)is called.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.Per-line events may be disabled for a frame by settingf_trace_linestoFalseon that frame.'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.'opcode'The interpreter is about to execute a new opcode (see
disforopcode details). The local trace function is called;arg isNone; the return value specifies the new local trace function.Per-opcode events are not emitted by default: they must be explicitlyrequested by settingf_trace_opcodestoTrueon theframe.
Note that as an exception is propagated down the chain of callers, an
'exception'event is generated at each level.For more fine-grained usage, it’s possible to set a trace function byassigning
frame.f_trace=tracefuncexplicitly, rather than relying onit being set indirectly via the return value from an already installedtrace function. This is also required for activating the trace function onthe current frame, whichsettrace()doesn’t do. Note that in orderfor this to work, a global tracing function must have been installedwithsettrace()in order to enable the runtime tracing machinery,but it doesn’t need to be the same tracing function (e.g. it could be alow overhead tracing function that simply returnsNoneto disableitself immediately on each frame).For more information on code and frame objects, refer toThe standard type hierarchy.
Raises anauditing event
sys.settracewith no arguments.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.Changed in version 3.7:
'opcode'event type added;f_trace_linesandf_trace_opcodesattributes added to frames
sys.set_asyncgen_hooks(firstiter,finalizer)¶Accepts two optional keyword arguments which are callables that accept anasynchronous generator iterator as an argument. Thefirstitercallable will be called when an asynchronous generator is iterated for thefirst time. Thefinalizer will be called when an asynchronous generatoris about to be garbage collected.
Raises anauditing event
sys.set_asyncgen_hooks_firstiterwith no arguments.Raises anauditing event
sys.set_asyncgen_hooks_finalizerwith no arguments.Two auditing events are raised because the underlying API consists of twocalls, each of which must raise its own event.
New in version 3.6:SeePEP 525 for more details, and for a reference example of afinalizer method see the implementation of
asyncio.Loop.shutdown_asyncgensinLib/asyncio/base_events.pyNote
This function has been added on a provisional basis (seePEP 411for details.)
sys.set_coroutine_origin_tracking_depth(depth)¶Allows enabling or disabling coroutine origin tracking. Whenenabled, the
cr_originattribute on coroutine objects willcontain a tuple of (filename, line number, function name) tuplesdescribing the traceback where the coroutine object was created,with the most recent call first. When disabled,cr_originwillbe None.To enable, pass adepth value greater than zero; this sets thenumber of frames whose information will be captured. To disable,pass setdepth to zero.
This setting is thread-specific.
New in version 3.7.
Note
This function has been added on a provisional basis (seePEP 411for details.) Use it only for debugging purposes.
sys._enablelegacywindowsfsencoding()¶Changes the default filesystem encoding and errors mode to ‘mbcs’ and‘replace’ respectively, for consistency with versions of Python prior to 3.6.
This is equivalent to defining the
PYTHONLEGACYWINDOWSFSENCODINGenvironment variable before launching Python.Availability: Windows.
New in version 3.6:SeePEP 529 for more details.
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. Non-Windowsplatforms use the locale encoding (see
locale.getpreferredencoding()).On Windows, UTF-8 is used for the console device. Non-characterdevices such as disk files and pipes use the system localeencoding (i.e. the ANSI codepage). Non-console characterdevices such as NUL (i.e. where
isatty()returnsTrue) use thevalue of the console input and output codepages at startup,respectively for stdin and stdout/stderr. This defaults to thesystem locale encoding if the process is not initially attachedto a console.The special behaviour of the console can be overriddenby setting the environment variable PYTHONLEGACYWINDOWSSTDIObefore starting Python. In that case, the console codepages areused as for any other character device.
Under all platforms, you can override the character encoding bysetting the
PYTHONIOENCODINGenvironment variable beforestarting Python or by using the new-Xutf8commandline option andPYTHONUTF8environment variable. However,for the Windows console, this only applies whenPYTHONLEGACYWINDOWSSTDIOis also set.When interactive,
stdoutandstderrstreams are line-buffered.Otherwise, they are block-buffered like regular text files. You canoverride this value 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¶Anamed tuple 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
Name 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.unraisablehook(unraisable,/)¶Handle an unraisable exception.
Called when an exception has occurred but there is no way for Python tohandle it. For example, when a destructor raises an exception or duringgarbage collection (
gc.collect()).Theunraisable argument has the following attributes:
exc_type: Exception type.
exc_value: Exception value, can be
None.exc_traceback: Exception traceback, can be
None.err_msg: Error message, can be
None.object: Object causing the exception, can be
None.
The default hook formatserr_msg andobject as:
f'{err_msg}:{object!r}'; use “Exception ignored in” error messageiferr_msg isNone.sys.unraisablehook()can be overridden to control how unraisableexceptions are handled.Storingexc_value using a custom hook can create a reference cycle. Itshould be cleared explicitly to break the reference cycle when theexception is no longer needed.
Storingobject using a custom hook can resurrect it if it is set to anobject which is being finalized. Avoid storingobject after the customhook completes to avoid resurrecting objects.
See also
excepthook()which handles uncaught exceptions.Raise an auditing event
sys.unraisablehookwith argumentshook,unraisablewhen an exception that cannot be handled occurs.Theunraisableobject is the same as what will be passed to the hook.If no hook has been set,hookmay beNone.New in version 3.8.
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.