Martin Panter
8f7d36ba9a
Issue #27952 : Get fixcid.py working with the re module
2016-09-11 09:48:57 +00:00
Steve Dower
d6004b4b3b
Issue #27566 : Fix clean target in freeze makefile (patch by Lisa Roach)
2016-09-09 18:38:10 -07:00
Steve Dower
fc7e4300d3
Removes file from installer.
2016-09-09 11:05:58 -07:00
Steve Dower
0ca4b6f5a6
Issue #27888 : Prevent Windows installer from displaying console windows and failing when pip cannot be installed/uninstalled.
2016-09-01 11:21:56 -07:00
Martin Panter
3d36f0f712
Spelling and grammar fixes in code comments and documentation
2016-07-28 02:37:04 +00:00
Martin Panter
a850ef698e
Issue #27626 : Spelling fixes in docs, comments and internal names
...
Based on patch by Ville Skyttä.
2016-07-28 01:11:04 +00:00
Martin Panter
b362f75f6e
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
to fix the grammar.
2015-11-02 03:37:02 +00:00
Steve Dower
2b8f094f3d
Adds batch file for building nuget package, and includes libs folder
2016-06-27 09:54:03 -07:00
Steve Dower
4da5815307
Adds scripts for building nuget packages.
2016-06-24 11:39:57 -07:00
Martin Panter
8d496add74
Issue #27171 : Fix typos in documentation, code comments, and tests
2016-06-02 10:35:44 +00:00
Ezio Melotti
d2b4926fa7
Fix a few typos. Patch by Eitan Adler.
2013-01-27 06:20:14 +02:00
Martin Panter
b1d867f149
Issue #27076 : Doc, comment and test function name spelling fixes
...
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
2016-05-26 05:28:50 +00:00
Victor Stinner
f6f617c5f7
Fix python-gdb.py: get C types on demand
...
Issue #26799 : Fix python-gdb.py: don't get C types once when the Python code is
loaded, but get C types on demand. The C types can change if python-gdb.py is
loaded before the Python executable. Patch written by Thomas Ilsche.
2016-04-20 18:23:13 +02:00
Serhiy Storchaka
9a118f1dc3
Issue #26778 : Fixed "a/an/and" typos in code comment and documentation.
2016-04-17 09:37:36 +03:00
Serhiy Storchaka
6d297cbec4
Issue #26581 : Use the first coding cookie on a line, not the last one.
2016-03-20 23:36:29 +02:00
Steve Dower
b6d633ce33
Backed out changeset: e7065fc4a6c2
2016-03-08 13:09:32 -08:00
Steve Dower
2f7570f094
Force clean externals on buildbots.
2016-03-08 12:51:59 -08:00
Steve Dower
db28718ebe
Updates build to use SHA256 hash when signing files
2016-02-08 09:26:25 -08:00
Terry Jan Reedy
cfad18dbdb
Issue #25505 : Remove unused buggy method.
2015-10-30 19:25:28 -04:00
Benjamin Peterson
a05c413029
fix usage of undefined name ( #25504 )
2015-10-29 21:10:57 -07:00
Zachary Ware
7ab6cb44e4
Allow PCbuild\rt.bat to accept unlimited arguments for regrtest.
...
This makes it possible to pass more than 7 tests by name through
Tools\buildbot\test.bat
2015-09-03 23:37:18 -05:00
Victor Stinner
cc1db4bf85
python-gdb.py: enhance py-bt command
...
* Add py-bt-full command
* py-bt now gives an output similar to a regular Python traceback
* py-bt indicates:
- if the garbage collector is running
- if the thread is waiting for the GIL
- detect PyCFunction_Call to get the name of the builtin function
2015-09-03 10:17:28 +02:00
Zachary Ware
4734372aa0
Close #24508 : Backport the 3.5 MSBuild project files.
...
The old project files move to PC/VS9.0 and remain supported.
VS2008 is still required to build 2.7; VS2010 (or later, plus Windows SDK 7.1)
is *also* required to use the new project files.
2015-07-16 00:24:48 -05:00
Zachary Ware
0e4497a32b
Deprecate unused scripts in Tools/buildbot.
...
I would just outright delete them, but the readme in PCbuild recommended
their use, so I figure it would be nice to leave them there for a while.
2015-06-16 10:56:14 -05:00
Zachary Ware
e1076aa4e2
Clean up/refactor the batch scripts used for building on Windows.
...
This is mostly a backport of issue #21907 , but also includes a few
extras necessary to make the bulidbot scripts as thin as possible.
2015-06-09 15:21:39 -05:00
Steve Dower
e44cbe7c22
Issue 24385: Adds "--as-flags=--32" when generating 32-bit MinGW library.
2015-06-08 09:57:04 -07:00
Steve Dower
9c933e6404
Generates installer product codes for future releases.
2015-06-03 08:58:14 -07:00
Steve Dower
6c42d1c51f
Adds UUIDs for 2.7.10
2015-05-10 19:06:07 -07:00
Serhiy Storchaka
aa767a555b
Issue #23330 : h2py now supports arbitrary filenames in #include.
2015-05-03 15:35:02 +03:00
Zachary Ware
b9298a4fbb
Issue #17202 : Add .bat to .hgeol to force them to CRLF.
...
Using LF can a script to fail if it tries to use a label that is
split across 512 byte blocks. Who knows why.
2015-04-13 11:54:11 -05:00
Zachary Ware
a87f690948
Backed out changeset 7b1ceb925471 after buildbots have new OpenSSL source.
2015-04-09 15:55:33 -05:00
Zachary Ware
bbf97798b0
Refresh OpenSSL sources on the buildbots
2015-04-09 15:50:08 -05:00
Zachary Ware
563e7c6cd5
Issue #23686 : Update Windows build to use OpenSSL 1.0.2a
2015-04-07 20:33:54 -05:00
Serhiy Storchaka
205408dacb
Issue #23615 : Module tarfile is now can be reloaded with imp.reload().
2015-03-11 17:31:59 +02:00
Serhiy Storchaka
e06224340d
Backed out changeset 7d2018774925
2015-02-16 01:49:22 +02:00
Serhiy Storchaka
eab2fd10cf
Use os.devnull instead of hardcoded '/dev/null'.
2015-02-15 13:57:49 +02:00
Steve Dower
a0299502c1
Issue #23212 : Update Windows copy of OpenSSL to 1.0.1l
2015-01-31 12:18:33 -08:00
Steve Dower
7407f58232
Issue #23199 : libpython27.a in amd64 release is 32-bit
2015-01-31 12:15:13 -08:00
Antoine Pitrou
c3edc19afc
Issue #23248 : Update ssl error codes from latest OpenSSL git master.
2015-01-18 17:39:32 +01:00
Steve Dower
1a94b2bfa6
Closes #23160 : Respect the environment variable SVNROOT in external-common.bat (patch by anselm.kruis)
2015-01-15 09:15:45 -08:00
Benjamin Peterson
35452b3f95
delete old ftpmirror script, which now has security bugs ( closes #23130 )
2014-12-30 10:08:16 -06:00
Steve Dower
0c3708a212
Adds missing revocation.crl test file to msi.py
2014-11-26 09:32:41 -08:00
Steve Dower
25b61201e0
Adds missing files to msi.py
2014-11-26 09:20:00 -08:00
Steve Dower
a6e6d0a621
Update msi.py and uuids.py for 2.7.9 releases
2014-11-25 22:43:06 -08:00
Steve Dower
2d14270734
Issue #22850 : Backport ensurepip Windows installer changes to 2.7
2014-11-12 19:02:20 -08:00
Donald Stufft
8aaff54db3
Implement PEP 477 - Backport ensurepip (PEP 453) to 2.7
...
* Backports ensurepip to the 2.7 branch
* Backports some of the improved documentation to the 2.7 branch.
* Adds a private backport of the 3.x mock library as test._mock_backport
to enable saner testing of ensurepip.
Key Differences from 3.x:
* Ensurepip does not have any Makefile integration, specifically
it is not ran by default in the Makefile.
* There is no venv module in 2.7, so downstream distributors can
completely disable ensurepip, ideally with a message redirecting
to the correct way to install pip.
* To match the ``python`` command in 2.7, ensurepip will install
the unversioned ``pip`` command as well.
* No-op and hide --default-pip and add --no-default-pip to restore
the 3.x behavor on 2.7.
2014-11-11 10:24:11 -05:00
Zachary Ware
21a2350a83
Issue #17896 : Move Windows external lib sources from .. to externals.
2014-11-01 22:34:09 -05:00
Zachary Ware
247b6441a0
Issue #17717 : Pull NASM from svn.python.org for OpenSSL build.
2014-11-01 17:11:08 -05:00
Georg Brandl
6a1184c024
Closes #22663 : patchcheck: only modify text files under Doc/
2014-10-19 11:54:08 +02:00
Zachary Ware
10229a450f
Issue #22644 : Update the Windows build to OpenSSL 1.0.1j
2014-10-17 16:20:15 -05:00