Martin Panter
b7665386bc
Issue #27952 : Get fixcid.py working with the re module
10 years ago
Steve Dower
528db31bd9
Issue #27566 : Fix clean target in freeze makefile (patch by Lisa Roach)
10 years ago
Steve Dower
c87ae806ab
Issue #25144 : Ensures TargetDir is set before continuing with custom install.
10 years ago
Steve Dower
2fadfc0ead
Issue #26619 : Improves error message when installing on out-of-date Windows Server
10 years ago
Martin Panter
69332c1a64
Fix spelling and grammar in documentation and code comments
10 years ago
Martin Panter
eb9957065a
Issue #27626 : Spelling fixes in docs, comments and internal names
Based on patch by Ville Skyttä.
10 years ago
Steve Dower
df450d1a18
Issue #27469 : Adds a shell extension to the launcher so that drag and drop works correctly.
10 years ago
Steve Dower
6fd76bceda
Fixes use of Py_IntDir and Py_OutDir to control build directories.
10 years ago
Serhiy Storchaka
1a2b24f02d
Issue #27332 : Fixed the type of the first argument of module-level functions
generated by Argument Clinic. Patch by Petr Viktorin.
10 years ago
Serhiy Storchaka
eb51faadbe
Issue #27418 : Fixed Tools/importbench/importbench.py.
10 years ago
Steve Dower
2e4cdb67d5
Adds script for purging the caching server for downloads on python.org.
10 years ago
Steve Dower
aaa1767bd3
Adds batch file to build nuget packages.
10 years ago
Steve Dower
33128c815e
Include libs folder in nuget package and allow preinstalling packages
10 years ago
Steve Dower
e7614dd07d
Simplifies nuget build with better parameters.
10 years ago
Steve Dower
3f9fbfcdd4
Preinstalls pip into the nuget package so that pip.exe is available after installation.
10 years ago
Steve Dower
33f7310c5e
Adds scripts for producing Nuget packages.
10 years ago
Serhiy Storchaka
ebe95fdabb
Issue #26305 : Argument Clinic now escapes braces. No need to double them.
10 years ago
Victor Stinner
6d81a2136d
regrtest doesn't ignore -j1 anymore
* regrtest now uses subprocesses when the -j1 command line option
is used: each test file runs in a fresh child process. Before, the -j1 option
was ignored.
* Tools/buildbot/test.bat script now uses -j1 by default to run
each test file in fresh child process.
10 years ago
Steve Dower
d8bf09c6cd
Issue #27053 : Updates make_zip.py to correctly generate library ZIP file.
10 years ago
Steve Dower
4962141804
Removes versioning from py.exe launcher installer and ensures that old launchers are replaced by newer ones.
10 years ago
Steve Dower
c710826ef2
Fixes unnecessary rebuild when building Windows releases with PGO
10 years ago
Serhiy Storchaka
ccd047ea4b
Removed unused imports.
10 years ago
Serhiy Storchaka
5b6f0aa71c
Remove duplicated tests.
There were duplicated methods with the same name and body.
10 years ago
Victor Stinner
19620c57d7
gdb/libpython.py: inline _type_void_ptr()
The function was only called in _sizeof_void_p()
10 years ago
Victor Stinner
4e75ca87e3
python-gdb.py: get C types at runtime
Issue #26799 : Fix python-gdb.py: don't get once C types when the Python code
is loaded, but get C types on demande. The C types can change if
python-gdb.py is loaded before the Python executable.
Patch written by Thomas Ilsche.
10 years ago
Victor Stinner
328cb1fed0
Update pygettext.py to get ride of imp
Issue #26639 : Replace imp with importlib in Tools/i18n/pygettext.py.
Remove _get_modpkg_path(), replaced with importlib.util.find_spec().
10 years ago
Victor Stinner
96f6e7a1ed
Buildbots: change also Windows timeout from 1 hour to 15 min
10 years ago
Serhiy Storchaka
e431d3c9aa
Issue #26581 : Use the first coding cookie on a line, not the last one.
10 years ago
Brett Cannon
e4044bfe63
Issue #26271 : Fix the Freeze tool to use variables passed in from the
configure script related to compiler flags.
Thanks to Daniel Shaulov for the bug report and patch.
10 years ago
Steve Dower
4a6f4825f4
Backs out buildbot clean trigger.
10 years ago
Steve Dower
79993a90e2
Adds warning to prepare_ssl when nasm is not available.
Force clean of externals on buildbots.
10 years ago
Berker Peksag
d66dd5ce68
Issue #26489 : Add dictionary unpacking support to Tools/parser/unparse.py
Patch by Guo Ci Teo.
10 years ago
Martin Panter
4177e7c38e
Issue #26316 : Fix variable name typo in Argument Clinic
10 years ago
Serhiy Storchaka
885bdc4946
Issue #25985 : sys.version_info is now used instead of sys.version
to format short Python version.
10 years ago
Victor Stinner
f2c1aa1661
Add ast.Constant
Issue #26146 : Add a new kind of AST node: ast.Constant. It can be used by
external AST optimizers, but the compiler does not emit directly such node.
An optimizer can replace the following AST nodes with ast.Constant:
* ast.NameConstant: None, False, True
* ast.Num: int, float, complex
* ast.Str: str
* ast.Bytes: bytes
* ast.Tuple if items are constants too: tuple
* frozenset
Update code to accept ast.Constant instead of ast.Num and/or ast.Str:
* compiler
* docstrings
* ast.literal_eval()
* Tools/parser/unparse.py
11 years ago
Steve Dower
10cabcbe14
Issue #26065 : Excludes venv from library when generating embeddable distro.
11 years ago
Steve Dower
10f997d986
Issue #25715 : Python 3.5.1 installer shows wrong upgrade path and incorrect logic for launcher detection.
11 years ago
Martin Panter
b4ce1fc31b
Issue #5319 : New Py_FinalizeEx() API to exit with status 120 on failure
11 years ago
Steve Dower
10fa83cb77
Fixes upload directories for Windows installer.
11 years ago
Steve Dower
21cecb904f
Fixes upload directories for Windows installer.
11 years ago
Steve Dower
5e2e70029b
Fixes installer not allowing launcher to be selected.
11 years ago
Steve Dower
ba270147e4
Issue #24306 : Sets component ID for launcher to match 3.5 and later to avoid downgrading.
11 years ago
Martin Panter
7462b64911
Issue #25523 : Correct "a" article to "an" article
This changes the main documentation, doc strings, source code comments, and a
couple error messages in the test suite. In some cases the word was removed
or edited some other way to fix the grammar.
11 years ago
Steve Dower
04a4316acc
Issue #25450 : Updates shortcuts to start Python in installation directory.
11 years ago
Steve Dower
940f6a8f11
Improves handling of test markers for building Python without intefering with actual installs.
11 years ago
Terry Jan Reedy
a05e7f6743
Issue #25505 : Remove unused buggy method.
11 years ago
Benjamin Peterson
dcc13ef1e9
fix usage of undefined name ( #25504 )
11 years ago
Brett Cannon
dd1e670758
Fix a variable typo by switching to a f-string.
11 years ago
Brett Cannon
f1c47e4751
Issue #25154 : Make the file argument apply to the print function and
not str.format call.
11 years ago
Steve Dower
5b6f3644e6
Issue #24633 : Removes automatic rename of site-packages/README since README.txt is now committed.
11 years ago