summaryrefslogtreecommitdiffstats
path: root/Doc/library/sys.rst
Commit message (Expand)AuthorAgeFilesLines
* [3.9] gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96502)Gregory P. Smith2022-09-051-13/+46
* bpo-6634: [doc] clarify that sys.exit() does not always exit the interpreter ...Miss Islington (bot)2022-03-031-5/+3
* [3.9] bpo-45788: Link sys.prefix doc to 'Installation paths' (GH-29606) (GH-2...Miss Islington (bot)2021-11-181-6/+3
* bpo-43472: Ensure PyInterpreterState_New audit events are raised when called ...Miss Islington (bot)2021-04-281-2/+2
* bpo-43284: Update platform.win32_ver to use _syscmd_ver instead of sys.getwin...Miss Islington (bot)2021-04-231-1/+6
* [3.9] bpo-41192: Clarify the sys module's description of the auditing feature...Andrew Kuchling2020-10-201-10/+25
* bpo-1294959: Try to clarify the meaning of platlibdir (GH-20332)Miss Islington (bot)2020-05-281-3/+4
* bpo-1294959: Add sys.platlibdir attribute (GH-18381)Victor Stinner2020-03-101-0/+21
* Doc: sys.__unraisablehook__ and bytearray.hex separators are new in 3.8 (GH-1...Saiyang Gou2020-02-081-0/+2
* bpo-39429: Add a new "Python Development Mode" doc page (GH-18132)Victor Stinner2020-01-241-7/+8
* bpo-39310: Add math.ulp(x) (GH-17965)Victor Stinner2020-01-131-8/+14
* bpo-13601: always use line-buffering for sys.stderr (GH-17646)Jendrik Seipp2020-01-011-3/+9
* bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisable hooks a...Steve Dower2019-11-281-1/+22
* bpo-38892: Improve docs for audit event (GH-17361)Terry Jan Reedy2019-11-261-3/+3
* bpo-38738: Fix formatting of True and False. (GH-17083)Serhiy Storchaka2019-11-121-1/+1
* bpo-38434: Fixes some audit event documentation (GH-16932)Steve Dower2019-10-261-8/+11
* bpo-37937: Mention frame.f_trace in sys.settrace docs (GH-15439)Ram Rachum2019-09-201-0/+11
* bpo-36270: Doc: add link to traceback object reference (GH-13119)Björn Meier2019-09-111-1/+1
* bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895)Raymond Hettinger2019-09-111-6/+6
* Correct minor gramatical mistake in sys.settrace doc (GH-15637)Andre Delfino2019-09-051-1/+2
* bpo-37284: Add note to sys.implementation doc (GH-14328)Giovanni Cappellotto2019-07-151-0/+4
* bpo-37363: Add audit events on startup for the run commands (GH-14524)Steve Dower2019-07-011-0/+6
* bpo-37390: Add audit event table to documentations (GH-14406)Steve Dower2019-06-271-6/+9
* bpo-37392: Remove sys.setcheckinterval() (GH-14355)Victor Stinner2019-06-251-23/+0
* bpo-36707: Document "m" removal from sys.abiflags (GH-14090)Victor Stinner2019-06-151-0/+4
* bpo-37261: Document sys.unraisablehook corner cases (GH-14059)Victor Stinner2019-06-141-3/+11
* bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-1...Matthias Bussonnier2019-05-281-59/+0
* bpo-1230540: Add threading.excepthook() (GH-13515)Victor Stinner2019-05-271-1/+5
* bpo-36829: Add _PyErr_WriteUnraisableMsg() (GH-13488)Victor Stinner2019-05-271-0/+5
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+63
* bpo-36829: Add sys.unraisablehook() (GH-13187)Victor Stinner2019-05-221-4/+29
* bpo-36932: use proper deprecation-removed directive (GH-13349)Matthias Bussonnier2019-05-211-1/+1
* Doc: Add link threading.settrace to sys.settrace (GH-13345)Stefan Hoelzl2019-05-171-2/+2
* bpo-36588: On AIX, remove major version from sys.platform (GH-12787)Michael Felt2019-04-121-1/+10
* bpo-17110: doc: add note how to get bytes from sys.argv (GH-12602)Inada Naoki2019-03-301-0/+6
* bpo-31904: Add encoding support for VxWorks RTOS (GH-12051)pxinwr2019-03-041-2/+6
* bpo-30410: Documentation of sys.stdin/out/err update to reflect change in 3.6...Lysandros Nikolaou2019-02-141-7/+24
* Fixed missing colun in library/sys.po (GH-11153)Jules Lasne (jlasne)2018-12-141-1/+1
* bpo-35054: Add more index entries for symbols. (GH-10064)Serhiy Storchaka2018-10-261-0/+2
* bpo-11233: Create availability directive for documentation (GH-9692)Cheryl Sabella2018-10-121-7/+13
* bpo-34901: add isolated (-I) flag to sys.flags (GH-9708)Danish Prakash2018-10-071-0/+4
* closes bpo-34502: Remove a note about utf8_mode from sys.exit() docs. (GH-8928)Alexey Izbyshev2018-08-251-3/+0
* bpo-33499: Add PYTHONPYCACHEPREFIX env var for alt bytecode cache location. (...Carl Meyer2018-06-161-0/+20
* bpo-32532: Improve documentation of settrace and setprofile (#5359)Xiang Zhang2018-01-271-1/+5
* bpo-17799: Explain real behaviour of sys.settrace and sys.setprofile (#4056)Pablo Galindo2018-01-241-17/+32
* bpo-32591: Add native coroutine origin tracking (#5250)Nathaniel J. Smith2018-01-211-0/+40
* bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)Victor Stinner2017-12-131-1/+12
* bpo-32101: Add PYTHONDEVMODE environment variable (#4624)Victor Stinner2017-11-301-0/+4
* Fix miscellaneous typos (#4275)luzpaz2017-11-051-1/+1
* bpo-28647: Update -u documentation after bpo-30404 (GH-3961)Berker Peksag2017-10-131-3/+3