| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Manpage: -X gil is not related to PYTHON_HISTORY (#133753) | Stefano Rivera | 2025-05-09 | 1 | -2/+2 |
| | | |||||
| * | gh-102567: Add -X importtime=2 for logging an importtime message for ↵ | Noah Kim | 2025-05-06 | 1 | -3/+8 |
| | | | | | | already-loaded modules (#118655) Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com> | ||||
| * | Escape hyphens in manpage (#132291) | Stefano Rivera | 2025-04-09 | 1 | -44/+44 |
| | | |||||
| * | Correct typo in GH-129623 (#130079) | Stefano Rivera | 2025-02-14 | 1 | -1/+1 |
| | | | | Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | ||||
| * | Update manpage environment variables and command line arguments (#129623) | Stefano Rivera | 2025-02-12 | 1 | -138/+238 |
| | | | | | Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | ||||
| * | gh-121101: Document -Wall option (an alias for -Walways) (#121102) | Wim Jeantine-Glenn | 2024-06-29 | 1 | -0/+1 |
| | | |||||
| * | gh-116167: Allow disabling the GIL with `PYTHON_GIL=0` or `-X gil=0` (#116338) | Brett Simmers | 2024-03-11 | 1 | -0/+4 |
| | | | | | | | | | | In free-threaded builds, running with `PYTHON_GIL=0` will now disable the GIL. Follow-up issues track work to re-enable the GIL when loading an incompatible extension, and to disable the GIL by default. In order to support re-enabling the GIL at runtime, all GIL-related data structures are initialized as usual, and disabling the GIL simply sets a flag that causes `take_gil()` and `drop_gil()` to return early. | ||||
| * | gh-73965: New environment variable PYTHON_HISTORY (#13208) | Zackery Spytz | 2024-01-07 | 1 | -0/+3 |
| | | | | | | | | | It can be used to set the location of a .python_history file --------- Co-authored-by: Levi Sabah <0xl3vi@gmail.com> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> | ||||
| * | gh-112730: Update docs for colour env vars (#112837) | Hugo van Kemenade | 2023-12-14 | 1 | -0/+3 |
| | | |||||
| * | GH-92584: Remove references to Distutils in ``PYTHONUSERBASE`` (#108040) | Adam Turner | 2023-08-16 | 1 | -2/+2 |
| | | | | Remove references to Distutils in ``PYTHONUSERBASE`` | ||||
| * | gh-95778: add doc missing in some places (GH-100627) | Éric | 2022-12-30 | 1 | -0/+9 |
| | | |||||
| * | gh-90300: split --help output into separate options (#30331) | Éric | 2022-06-01 | 1 | -2/+25 |
| | | | | | | | Make --help output shorter and add new help options. --help-env, --help-xoptions and --help-all command-line options are added to complement --help. | ||||
| * | gh-93217: fix some issues in man page and --help (#93219) | Éric | 2022-05-26 | 1 | -3/+16 |
| | | |||||
| * | gh-88750: Remove the PYTHONTHREADDEBUG env var support. (#92509) | Gregory P. Smith | 2022-05-09 | 1 | -3/+0 |
| | | | | | Remove the `PYTHONTHREADDEBUG` env var support. Remove no-op dprintf() macro calls. | ||||
| * | gh-57684: Add -P cmdline option and PYTHONSAFEPATH env var (#31542) | Victor Stinner | 2022-05-05 | 1 | -1/+13 |
| | | | | | | | | | | | | | Add the -P command line option and the PYTHONSAFEPATH environment variable to not prepend a potentially unsafe path to sys.path. * Add sys.flags.safe_path flag. * Add PyConfig.safe_path member. * Programs/_bootstrap_python.c uses config.safe_path=0. * Update subprocess._optim_args_from_interpreter_flags() to handle the -P command line option. * Modules/getpath.py sets safe_path to 1 if a "._pth" file is present. | ||||
| * | bpo-44584: Deprecate PYTHONTHREADDEBUG env var (GH-27065) | Victor Stinner | 2021-08-06 | 1 | -0/+1 |
| | | | | | | The threading debug (PYTHONTHREADDEBUG environment variable) is deprecated in Python 3.10 and will be removed in Python 3.12. This feature requires a debug build of Python. | ||||
| * | bpo-43862: Enhance -W cmdline option documentation (GH-25439) | Victor Stinner | 2021-04-16 | 1 | -56/+61 |
| | | | | | | The -W format is "action:message:category:module:lineno". Update also the Python manual page. | ||||
| * | Disambiguate that -m also terminates the option list in the manpage. (GH-25100) | Julien Palard | 2021-03-31 | 1 | -1/+2 |
| | | |||||
| * | bpo-41525: Make the Python program help ASCII-only (GH-21836) | Serhiy Storchaka | 2020-09-09 | 1 | -1/+1 |
| | | |||||
| * | bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var ↵ | Sandro Mani | 2020-06-08 | 1 | -0/+2 |
| | | | | | (GH-20605) | ||||
| * | bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) | Victor Stinner | 2020-02-03 | 1 | -4/+0 |
| | | | | | | | | | | | | Remove: * COUNT_ALLOCS macro * sys.getcounts() function * SHOW_ALLOC_COUNT code in listobject.c * SHOW_TRACK_COUNT code in tupleobject.c * PyConfig.show_alloc_count field * -X showalloccount command line option * @test.support.requires_type_collecting decorator | ||||
| * | bpo-39427: Document -X opt options in the CLI --help and the man page (GH-18131) | Pablo Galindo | 2020-01-23 | 1 | -1/+39 |
| | | | | | | | | https://bugs.python.org/issue39427 Automerge-Triggered-By: @pablogsal | ||||
| * | bpo-29535: Remove promize about hash randomization of datetime objects. ↵ | Serhiy Storchaka | 2019-08-24 | 1 | -1/+1 |
| | | | | | (GH-15269) | ||||
| * | closes bpo-36083: Fix formatting of the manpage Synopsis. (GH-12017) | Miro Hrončok | 2019-02-25 | 1 | -1/+5 |
| | | | | More specifically, the options of --check-hash-based-pycs. | ||||
| * | bpo-34231: PYTHONBREAKPOINT is not documented on python --help (GH-8475) | Stéphane Wirtel | 2018-07-29 | 1 | -0/+3 |
| | | |||||
| * | bpo-24459: Document missing env variables in python.man (GH-4142) | Berker Peksag | 2018-07-09 | 1 | -0/+67 |
| | | | | | Initial patch by Joshua Jay Herman. | ||||
| * | pypi.python.org -> pypi.org (GH-7613) | Ned Deily | 2018-06-11 | 1 | -1/+1 |
| | | |||||
| * | bpo-17232: Clarify docs for -O and -OO command line options (#5839) | Cheryl Sabella | 2018-02-25 | 1 | -2/+5 |
| | | | | The 'optimization' is for space in the executable file, not for run time. | ||||
| * | closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575) | Benjamin Peterson | 2017-12-09 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | Python now supports checking bytecode cache up-to-dateness with a hash of the source contents rather than volatile source metadata. See the PEP for details. While a fairly straightforward idea, quite a lot of code had to be modified due to the pervasiveness of pyc implementation details in the codebase. Changes in this commit include: - The core changes to importlib to understand how to read, validate, and regenerate hash-based pycs. - Support for generating hash-based pycs in py_compile and compileall. - Modifications to our siphash implementation to support passing a custom key. We then expose it to importlib through _imp. - Updates to all places in the interpreter, standard library, and tests that manually generate or parse pyc files to grok the new format. - Support in the interpreter command line code for long options like --check-hash-based-pycs. - Tests and documentation for all of the above. | ||||
| * | bpo-32124: Document C functions safe before init (#4540) | Victor Stinner | 2017-11-24 | 1 | -1/+1 |
| | | | | | Explicitly document C functions and C variables that can be set before Py_Initialize(). | ||||
| * | bpo-28647: Update -u documentation after bpo-30404 (GH-3961) | Berker Peksag | 2017-10-13 | 1 | -7/+2 |
| | | |||||
| * | bpo-30737: Update DevGuide links to new URL (GH-3228) | Lisa Hewus Fresh | 2017-08-30 | 1 | -1/+1 |
| | | | | Update old devguide links from https://docs.python.org/devguide to https://devguide.python.org | ||||
| * | Issue #28532: Show sys.version when -V option is supplied twice | INADA Naoki | 2016-11-21 | 1 | -1/+2 |
| | | |||||
| * | Issue #28396: Remove any mention of .pyo files from the man page. | Brett Cannon | 2016-10-21 | 1 | -2/+2 |
| | | | | | Thanks to Ville Skyttä for the patch. | ||||
| * | merge 3.4 (#17167) | Benjamin Peterson | 2016-03-22 | 1 | -1/+1 |
| |\ | |||||
| | * | remove useless $ keyword (closes #17167) | Benjamin Peterson | 2016-03-22 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #25899: Converted non-ASCII characters in docstrings and manpage | Serhiy Storchaka | 2015-12-18 | 1 | -1/+1 |
| | | | | | | | | | to ASCII replacements. Original patch by Chris Angelico. | ||||
| * | | merge 3.4 | Benjamin Peterson | 2015-05-11 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | add trailing slash | Benjamin Peterson | 2015-05-11 | 1 | -1/+1 |
| | | | |||||
| * | | merge 3.4 | Benjamin Peterson | 2015-04-30 | 1 | -6/+6 |
| |\ \ | |/ | |||||
| | * | update links | Benjamin Peterson | 2015-04-30 | 1 | -6/+6 |
| | | | |||||
| * | | merge 3.4 | Benjamin Peterson | 2015-04-29 | 1 | -2/+1 |
| |\ \ | |/ | |||||
| | * | improve phrasing | Benjamin Peterson | 2015-04-29 | 1 | -2/+1 |
| | | | |||||
| * | | Issue #24077: merge from 3.4 | Ned Deily | 2015-04-29 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | Issue #24077: Fix typo in man page for -I command option: -s, not -S. | Ned Deily | 2015-04-29 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #23731: Implement PEP 488. | Brett Cannon | 2015-04-13 | 1 | -14/+11 |
| |/ | | | | | | The concept of .pyo files no longer exists. Now .pyc files have an optional `opt-` tag which specifies if any extra optimizations beyond the peepholer were applied. | ||||
| * | PYTHONY2K is long gone. Remove traces from the docs and manpage. | Georg Brandl | 2014-10-28 | 1 | -5/+0 |
| | | |||||
| * | Issue #16400: Add command line option for isolated mode. | Christian Heimes | 2013-08-10 | 1 | -2/+12 |
| | | | | | | | | | | | -I Run Python in isolated mode. This also implies -E and -s. In isolated mode sys.path contains neither the script’s directory nor the user’s site-packages directory. All PYTHON* environment variables are ignored, too. Further restrictions may be imposed to prevent the user from injecting malicious code. | ||||
| * | #16937: document that stdin is always buffered, even when -u is used. Patch ↵ | Ezio Melotti | 2013-07-25 | 1 | -1/+2 |
| | | | | | by Elena Oat. | ||||
| * | Add -b and -X options to python man page. | Senthil Kumaran | 2013-06-20 | 1 | -4/+18 |
| | | | | | Patch contributed by Corey Brune. | ||||
