Victor Stinner
3728d6ced0
Issue #18874 : Remove tracemalloc.set_traceback_limit()
tracemalloc.start() now has an option nframe parameter
12 years ago
Victor Stinner
ed3b0bca3e
Issue #18874 : Implement the PEP 454 (tracemalloc)
12 years ago
Nick Coghlan
8fbdb097cf
Close #19552 : venv and pyvenv ensurepip integration
12 years ago
Serhiy Storchaka
bf28d2dcad
Issue #18818 : The "encodingname" part of PYTHONIOENCODING is now optional.
13 years ago
Victor Stinner
8898350076
Close #18957 : The PYTHONFAULTHANDLER environment variable now only enables the
faulthandler module if the variable is non-empty. Same behaviour than other
variables like PYTHONDONTWRITEBYTECODE.
13 years ago
Christian Heimes
ad73a9cf97
Issue #16400 : Add command line option for isolated mode.
-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.
13 years ago
Victor Stinner
ae6d05bcb9
doc of PYTHONFAULTHANDLER env var: add missing "versionadded" tag
13 years ago
Ezio Melotti
61b0c672b5
#16937 : document that stdin is always buffered, even when -u is used. Patch by Elena Oat.
13 years ago
Antoine Pitrou
1a6cb30a34
Issue #5845 : Enable tab-completion in the interactive interpreter by default, thanks to a new sys.__interactivehook__.
(original patch by Éric Araujo)
13 years ago
Georg Brandl
e09596862a
Update using/mac documentation which was still on 2.5.
13 years ago
Ezio Melotti
ac3da87553
#17686 : fix broken link in Doc/using/unix.rst. Patch by Dan Riti.
13 years ago
Ezio Melotti
a1eb483d8f
Add versionadded for `-X faulthandler` (also fix typo and markup).
13 years ago
Ezio Melotti
1f8898a591
#17323 : The "[X refs, Y blocks]" printed by debug builds has been disabled by default. It can be re-enabled with the `-X showrefcount` option.
13 years ago
Ned Deily
ae8d6ac3f4
Issue #15116 : Remove references to appscript as it is no longer being
supported.
13 years ago
Ned Deily
7045f0579b
Issue #15116 : Remove references to appscript as it is no longer being
supported.
13 years ago
Chris Jerdonek
b7c2386a3f
Fix Sphinx warning (missing "setting-envvars" reference).
This fixes the following warning when building the docs (probably from
the commit for issue #14901 ):
"/Doc/faq/windows.rst:138: WARNING: undefined label: setting-envvars (if the
link has no caption the label must precede a section header)"
13 years ago
Georg Brandl
8e1e8165a3
Add missing label.
13 years ago
Andrew Svetlov
950d5fdc7f
Issue #16241 : document -X faulthandler command line option.
Patch by Marek Šuppa.
14 years ago
Ezio Melotti
5b69fbd4c9
Remove wrong escape in code snippet.
14 years ago
Andrew Svetlov
abfc7df149
Issue #9583 : Document startup option/environment interaction.
Patch by Todd Rovito.
14 years ago
Andrew Svetlov
f892597eb5
Issue #9583 : Document startup option/environment interaction.
Patch by Todd Rovito.
14 years ago
Andrew Svetlov
65e9c57369
Issue #15417 : Add support for csh and fish in venv activation scripts.
14 years ago
Nick Coghlan
349c802fd8
What's new entry for PEP 397 and Windows PATH modification
14 years ago
Antoine Pitrou
a5e5797e48
Improve the pyvenv entry
14 years ago
Brian Curtin
a86f185374
Fixes #14668 . Mention Windows Path manipulation option in the installer.
14 years ago
Sandro Tosi
8b2c71a125
update Geany URL; thanks to Karl Tarbet from docs@
14 years ago
Sandro Tosi
6c625e6024
update Geany URL; thanks to Karl Tarbet from docs@
14 years ago
Antoine Pitrou
0209dc1ff6
Clarify that hash randomization is on by default
14 years ago
Vinay Sajip
c4618e33b2
Factored out common venv documentation and added more information about Distribute/pip.
14 years ago
Vinay Sajip
cd9b746b37
Added cross-references to venv definition.
14 years ago
Vinay Sajip
a945ad1a12
Issue #15283 : Updated pyvenv documentation to expand on activation.
14 years ago
Vinay Sajip
3575f910d9
Closes #15241 : Added information on venv prefixes to pyvenv section.
14 years ago
Vinay Sajip
d89dae18e8
Added Windows launcher documentation.
14 years ago
Éric Araujo
859aad6a36
Remove packaging from the standard library.
Distutils2 will live on on PyPI and be included in the stdlib when it
is ready. See discussion starting at
http://mail.python.org/pipermail/python-dev/2012-June/120430.html
14 years ago
Vinay Sajip
4126a7dc17
Added pyvenv docs to 'Python Setup and Usage' section.
14 years ago
Georg Brandl
c9a42070a6
Remove reST markup from --help output. Also: O(n**2) is dict construction, not single insertion.
14 years ago
Georg Brandl
3aec568e6e
Remove reST markup from --help output. Also: O(n**2) is dict construction, not single insertion.
14 years ago
Benjamin Peterson
c9f54cf512
enable hash randomization by default
14 years ago
Barry Warsaw
1e13eb084f
- Issue #13703 : oCERT-2011-003: add -R command-line option and PYTHONHASHSEED
environment variable, to provide an opt-in way to protect against denial of
service attacks due to hash collisions within the dict and set types. Patch
by David Malcolm, based on work by Victor Stinner.
14 years ago
Georg Brandl
2daf6ae249
Issue #13703 : add a way to randomize the hash values of basic types (str, bytes, datetime)
in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated.
The environment variable PYTHONHASHSEED and the new command line flag -R control this
behavior.
14 years ago
Brett Cannon
64b2b6a84d
Issue #13883 : Document all platforms PYTHONCASEOK works on.
14 years ago
Brett Cannon
1740afded1
Issue #13883 : Document all platforms PYTHONCASEOK works on.
14 years ago
Éric Araujo
a358bc3ca2
State explicitely that PYTHONDONTWRITEBYTECODE is equivalent to -B
14 years ago
Sandro Tosi
1abde3628b
fix some broken URLs
14 years ago
Sandro Tosi
117e1f00a8
fix some broken URLs
14 years ago
Antoine Pitrou
08c08eb93c
Issue #13597 : Fix the documentation of the "-u" command-line option, and wording of "What's new in Python 3.0" about standard streams.
14 years ago
Éric Araujo
3bb1a6f990
State explicitely that PYTHONDONTWRITEBYTECODE is equivalent to -B
15 years ago
Sandro Tosi
53bcd66012
use diveintopython.net now that DIP.org returns 410; thanks to Josh Gachnang from docs@
15 years ago
Sandro Tosi
c4114ead71
use diveintopython.net now that DIP.org returns 410; thanks to Josh Gachnang from docs@
15 years ago
Éric Araujo
9bcbc62062
Update dead references from py.org/dev/faq to the devguide ( #13176 )
15 years ago