Charles
291557e290
PCbuild/build.bat: pass command line parameters when building PGO ( #1510 )
Custom msbuild properties passed as command line need to be passed too when calling `Build` when doing PGO build.
9 years ago
Segev Finer
f60c9e54f5
bpo-29191: Add liblzma.vcxproj to pcbuild.sln and other missing entries ( #1222 )
liblzma is missing from pcbuild.sln. This causes the build of _lzma to fail when building the solution and not using build.bat.
9 years ago
Victor Stinner
d6debb24e0
bpo-29919: Remove unused imports found by pyflakes ( #137 )
Make also minor PEP8 coding style fixes on modified imports.
9 years ago
Ned Deily
554626ada7
bpo-27593: Revise git SCM build info. ( #744 )
Use --short form of git hash. Use output from "git describe" for tag.
Expected outputs:
1. previous hg
2. previous git
3. updated git
Release (tagged) build:
1. Python 3.7.0a0 (v3.7.0a0:4def2a2901a5, ...
2. Python 3.7.0a0 (v3.7.0a0^0:05f53735c8912f8df1077e897f052571e13c3496, ...
3. Python 3.7.0a0 (v3.7.0a0:05f53735c8, ...
Development build:
1. Python 3.7.0a0 (default:41df79263a11, ...
2. Python 3.7.0a0 (master:05f53735c8912f8df1077e897f052571e13c3496, ...
3. Python 3.7.0a0 (heads/master-dirty:05f53735c8, ...
"dirty" means the working tree has uncommitted changes.
See "git help describe" for more info.
9 years ago
Xiang Zhang
0710d75425
bpo-29770: remove outdated PYO related info (GH-590)
9 years ago
INADA Naoki
8886d5f392
PCbuild: Add -q option to svn export (GH-535)
Without this option, AppVeyor log is too unreadable.
9 years ago
Steve Dower
7030ca65de
Fixes git command ( #451 )
9 years ago
Steve Dower
a0c07d2edd
bpo-27593: Updates Windows build to use information from git ( #262 )
* bpo-27593: Updates Windows build to use information from git
9 years ago
Zachary Ware
fc64c351c7
bpo-29572: Update Windows build to OpenSSL 1.0.2k (GH-439)
9 years ago
Victor Stinner
c22bfaae83
bpo-29524: Add Objects/call.c file ( #12 )
* Move all functions to call objects in a new Objects/call.c file.
* Rename fast_function() to _PyFunction_FastCallKeywords().
* Copy null_error() from Objects/abstract.c
* Inline type_error() in call.c to not have to copy it, it was only
called once.
* Export _PyEval_EvalCodeWithName() since it is now called
from call.c.
9 years ago
Victor Stinner
d2306cec4d
Backed out changeset f23fa1f7b68f
Sorry, I didn't want to push this change before the review :-( I was pushing a
change into the 2.7 branch.
9 years ago
Victor Stinner
766af559ad
Issue #29465 : Add Objects/call.c file
* Move all functions to call objects in a new Objects/call.c file.
* Rename fast_function() to _PyFunction_FastCallKeywords().
* Copy null_error() from Objects/abstract.c
* Inline type_error() in call.c to not have to copy it, it was only
called once.
* Export _PyEval_EvalCodeWithName() since it is now called
from call.c.
9 years ago
Steve Dower
7ec8a18514
Issue #29080 : Removes hard dependency on hg.exe from PC/build.bat
9 years ago
Steve Dower
10beb3cfef
Issue #28896 : Disable WindowsRegistryFinder by default.
9 years ago
Steve Dower
de6efdb772
Ensures intermediate directory is created before accessing it.
9 years ago
Steve Dower
190dbd9ba2
Issue #28846 : Various installer fixes
9 years ago
Steve Dower
02a4018c6e
Issue #28573 : Missing sys._mercurial info and other build issues.
9 years ago
Steve Dower
4468bed2fc
Issue #28573 : Avoid setting up env too many times during build
9 years ago
Steve Dower
1da055ee0d
Makes test_underpth* tests more robust by copying the executable.
9 years ago
Benjamin Peterson
4510e6de9d
mark dtrace stubs as static inline; remove stubs
C99 inline semantics don't work everywhere. (https://bugs.python.org/issue28092 )
We don't want these to have external visibility anyway.
9 years ago
INADA Naoki
a83636247e
Issue #28448 : Fix C implemented asyncio.Future didn't work on Windows
9 years ago
INADA Naoki
9f2ce25481
Issue #28428 : Rename _futures module to _asyncio.
It will have more speedup functions or classes other than asyncio.Future.
9 years ago
Zachary Ware
547d156c2c
Issue #28208 : Update Windows build to use SQLite 3.14.2.0
9 years ago
Zachary Ware
068534ab03
Issue #28248 : Update Windows build to use OpenSSL 1.0.2j
9 years ago
Steve Dower
425ec150ea
Issue #28402 : Adds signed catalog files for stdlib on Windows.
9 years ago
INADA Naoki
9e4e38ecd2
Issue #26801 : Added C implementation of asyncio.Future.
Original patch by Yury Selivanov.
9 years ago
Steve Dower
312cef7452
Issue #28217 : Adds _testconsole module to test console input. Fixes some issues found by the tests.
9 years ago
Steve Dower
fb4a96a58f
Issue #28251 : Improvements to help manuals on Windows.
9 years ago
Victor Stinner
3e56c23e7d
regrtest: add -u for unbuffered stdout/stderr
9 years ago
Steve Dower
17a564ecc9
Add file missed from backport
9 years ago
Steve Dower
74f4af7ac3
Issue #27932 : Prevent memory leak in win32_ver().
9 years ago
Ned Deily
4829bc6619
Bump to 3.7.0a0
9 years ago
Steve Dower
e7da2f8380
Make PGO use usual build directory on Windows.
9 years ago
Zachary Ware
16c18a354b
Issue #28065 : Update xz to 5.2.2 on Windows, and build it from source
9 years ago
Benjamin Peterson
37d398ebd1
compile dtrace stubs
9 years ago
Steve Dower
ad46443e9d
Issue #24186 : Reenable optimised OpenSSL function
9 years ago
Steve Dower
4db86bc1b4
Changes pyvenv.cfg trick into an actual sys.path file.
9 years ago
Zachary Ware
8c9d99ff22
Issue #27407 : Make PCbuild/prepare_ssl.py Python 2 compatible
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
Christian Heimes
393b82e4c1
Issue #16113 : compile the module on Windows, too.
9 years ago
Christian Heimes
121b9487d1
Issue #26798 : Add BLAKE2 (blake2b and blake2s) to hashlib.
9 years ago
Zachary Ware
dd2afe9edc
Closes #20366 : Build full text search support into SQLite on Windows
9 years ago
Steve Dower
c7d1cf4de9
Issue #27756 : Adds new icons for Python files and processes on Windows. Designs by Cherry Wang.
9 years ago
Zachary Ware
ebbc736922
Fix get_externals.bat
9 years ago
Zachary Ware
7c510a6a2d
Issue #27883 : Update sqlite to 3.14.1 on Windows
9 years ago
Zachary Ware
28c3184d8d
Issue #27647 : Update Windows build to Tcl/Tk 8.6.6
10 years ago
Steve Dower
6ed63f31e9
Fixes default intermediate directory when building on Windows.
10 years ago
Steve Dower
bc3e9cac7c
Closes #27545 : Remove pyshellext.vcxproj from pcbuild.proj
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