INADA Naoki
f576343179
Issue #28532 : Add what's new entry for python -VV option
9 years ago
INADA Naoki
0e175a6e76
Issue #28532 : Show sys.version when -V option is supplied twice
9 years ago
Martin Panter
b8c5f54248
Issue #26638 : Work around more CLI options that can’t be linked
* Cannot seem to link directly to main options from the “unittest” module,
because that module has its own set of options
* Mask out linking for options that no longer exist in Python 3
9 years ago
Martin Panter
5c67933940
Issue #26638 : Mask undefined CLI options to defeat new Sphinx warnings
9 years ago
Victor Stinner
c6b1e15788
Close #28479 : Fix reST syntax in windows.rst
Patch written by Julien Palard.
9 years ago
Steve Dower
fb12ce1cb3
Issue #28218 : Fixes versionadded description in using/windows.rst
9 years ago
Steve Dower
ed51b26858
Issue #28137 : Renames Windows path file to ._pth
Issue #28138 : Windows ._pth file should allow import site
9 years ago
Steve Dower
3cdd7f57a2
Add links from whatsnew to Windows docs.
9 years ago
Steve Dower
814f9ae33e
Adds documentation for pythonXX.zip as a landmark.
9 years ago
Steve Dower
f333fd82a2
Switch to using |version| substitition in Windows docs.
9 years ago
Steve Dower
4db86bc1b4
Changes pyvenv.cfg trick into an actual sys.path file.
9 years ago
Steve Dower
3929499914
Issue #1602 : Windows console doesn't input or print Unicode (PEP 528)
Closes #17602 : Adds a readline implementation for the Windows console
9 years ago
Steve Dower
cc16be85c0
Issue #27781 : Change file system encoding on Windows to UTF-8 (PEP 529)
9 years ago
Steve Dower
19ab0fd456
Issue #27731 : Opt-out of MAX_PATH on Windows 10
9 years ago
Berker Peksag
f43bc98c48
Issue #12982 : Thanks to PEP 488, Python no longer creates .pyo files
9 years ago
Zachary Ware
72e483aac4
Fix half-finished sentence.
Reported by Linda Pescatore on docs@.
10 years ago
Zachary Ware
87ec85f420
Correct typo in Windows docs.
Found by Jack Copper on docs@
10 years ago
Brett Cannon
15552c39e0
Issue #27285 : Document the deprecation of the pyvenv script.
As part of the update, the documentation was updated to normalize
around the term "virtual environment" instead of relying too heavily
on "venv" for the same meaning and leading to inconsistent usage of
either.
Thanks to Steve Piercy for the patch.
10 years ago
Serhiy Storchaka
7e160ce356
Issue #23034 : The output of a special Python build with defined COUNT_ALLOCS,
SHOW_ALLOC_COUNT or SHOW_TRACK_COUNT macros is now off by default. It can
be re-enabled using the "-X showalloccount" option. It now outputs to stderr
instead of stdout.
10 years ago
Berker Peksag
6803f35acc
Issue #27393 : Fix escaping of C:\ too
10 years ago
Berker Peksag
9c1e9d453c
Issue #27393 : Fix escaping of venv activate commands on Windows
Patch by Manuel Kaufmann.
10 years ago
Paul Moore
835416cf7c
Issue #27064 : The py.exe launcher now defaults to Python 3.
The Windows launcher ``py.exe`` no longer prefers an installed
Python 2 version over Python 3 by default when used interactively.
10 years ago
Senthil Kumaran
c9bfc13aa9
issue27045 - Use backslash in windows path to script file.
10 years ago
Serhiy Storchaka
6dff0205b7
Issue #26736 : Used HTTPS for external links in the documentation if possible.
10 years ago
Victor Stinner
f5c4b99034
PyMem_Malloc() now uses the fast pymalloc allocator
Issue #26249 : PyMem_Malloc() allocator family now uses the pymalloc allocator
rather than system malloc(). Applications calling PyMem_Malloc() without
holding the GIL can now crash: use PYTHONMALLOC=debug environment variable to
validate the usage of memory allocators in your application.
10 years ago
Serhiy Storchaka
de886d9233
Issue #25910 : Fixed more links in the docs.
10 years ago
Victor Stinner
d1700a9360
Fix typo in doc: avoid the french "& cie" :-)
10 years ago
Victor Stinner
9b46a57302
Doc: fix typos, patch written by Stefan Behnel
10 years ago
Victor Stinner
c2fc56836f
Enhance documentation on malloc debug hooks
Issue #26564 , #26516 , #26563 .
10 years ago
Victor Stinner
34be807ca4
Add PYTHONMALLOC env var
Issue #26516 :
* Add PYTHONMALLOC environment variable to set the Python memory
allocators and/or install debug hooks.
* PyMem_SetupDebugHooks() can now also be used on Python compiled in release
mode.
* The PYTHONMALLOCSTATS environment variable can now also be used on Python
compiled in release mode. It now has no effect if set to an empty string.
* In debug mode, debug hooks are now also installed on Python memory allocators
when Python is configured without pymalloc.
10 years ago
Georg Brandl
5d94134040
Closes #25910 : fix dead and permanently redirected links in the docs. Thanks to SilentGhost for the patch.
10 years ago
Georg Brandl
06871ef2b3
Fix version.
10 years ago
Georg Brandl
8c16cb9f65
Closes #26435 : fix syntax in directives. Thanks to Jakub Stasiak.
10 years ago
Martin Panter
c04fb56e36
Issue #26304 : Change "allows to <verb>" to "allows <verb>ing" or similar
The original form is incorrect grammar and feels awkward, even though the
meaning is clear.
10 years ago
Berker Peksag
ef410770a7
Update "Creating Virtual Environments" link in venv documentation
10 years ago
Berker Peksag
a9744aebc8
Update output of venv -h
* Update description of the --system-site-packages option
* Show --copies option in the usage
10 years ago
Berker Peksag
547f66f599
Issue #26034 : Sync documentation of --clear with its behavior
Most of the docs has already been updated in c3c188a0325a.
10 years ago
Steve Dower
e248f6875b
Issue #25089 : Adds short documentation section for modifying an install.
10 years ago
Brett Cannon
85622e4bc9
Issue #25874 : Clarify platform support in the "Using Python on Windows" doc.
Thanks to Chris Wilcox for the initial patch.
10 years ago
Martin Panter
7dda421bff
Issue #14285 : Do not catch exceptions initializing any ancestor package
The previous fix only handled the case of the parent package of __main__
failing to initialize.
Also make the "Error while finding spec" formatting slightly more appealing,
and document and test that the module name must be absolute.
10 years ago
Steve Dower
9b608e539b
Closes #25078 : Document InstallAllUsers installer parameter default 0
10 years ago
Serhiy Storchaka
0424eaf753
Marked keystrokes with the :kbd: role.
Fixed the case of the "Ctrl-" prefixes.
10 years ago
Steve Dower
cb0afc84de
Removes invalid installer options from documentation.
10 years ago
Zachary Ware
1a83746418
Issue #24962 : Remove space from filename
10 years ago
Steve Dower
2434aa24e0
Adds support for an unattend.xml file to control the Windows installer options.
11 years ago
Steve Dower
a3d03ec6b1
Adds option to only install the launcher.
11 years ago
Steve Dower
af75a54193
Removes my username from the documentation.
11 years ago
Steve Dower
2237bdc595
Adds option to install launcher for all users even when installing Python just-for-me. This helps mitigate issues when the incompatible Python 3.4 launcher is installed.
Enables installer builds with the the text marker.
Allows simple installs to include a custom description.
11 years ago
Steve Dower
eb3c16d38c
Adds documentation for the new Windows embedded package.
11 years ago
Steve Dower
4a7fe7e397
Issue #23955 : Add pyvenv.cfg option to suppress registry/environment lookup for generating sys.path.
Also cleans up and secures getpathp.c
11 years ago