summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Switch to the new upload url for PyPIDonald Stufft2016-07-063-4/+4
|
* Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache.Serhiy Storchaka2015-12-023-0/+27
|
* Issue #25940: Merge ETIMEDOUT fix from 3.2 into 3.3Martin Panter2016-01-151-1/+1
|\
| * Issue #25940: On Windows, connecting to port 444 returns ETIMEDOUTMartin Panter2016-01-151-1/+3
| |
* | Issue #25940: Merge self-signed.pythontest.net testing from 3.2 into 3.3Martin Panter2016-01-147-89/+111
|\ \ | |/
| * Issue #25940: Use self-signed.pythontest.net in SSL testsMartin Panter2016-01-146-96/+97
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is instead of svn.python.org, whose certificate recently expired, and whose new certificate uses a different root certificate. The certificate used at the pythontest server was modifed to set the "basic constraints" CA flag. This flag seems to be required for test_get_ca_certs_ capath() to work (in Python 3.4+). Added the new self-signed certificate to capath with the following commands: cp Lib/test/{selfsigned_pythontestdotnet.pem,capath/} c_rehash -v Lib/test/capath/ c_rehash -v -old Lib/test/capath/ # Note the generated file names cp Lib/test/capath/{selfsigned_pythontestdotnet.pem,0e4015b9.0} mv Lib/test/capath/{selfsigned_pythontestdotnet.pem,ce7b8643.0} The new server responds with "No route to host" when connecting to port 444.
| * Issue #25940: Backport self-signed.pythontest.net testing for test_httplibGeorg Brandl2014-11-052-7/+24
| | | | | | | | | | The svn.python.org server recently changed root certificate, causing the test to fail. This backports revision 4985375db40f.
* | remove some copyright notices supserseded by the toplevel onesBenjamin Peterson2016-01-014-31/+0
| |
* | add 2015 and 2016Benjamin Peterson2016-01-011-1/+1
| |
* | reflowBenjamin Peterson2016-01-011-2/+3
| |
* | 2016 will be another year of writing copyrighted codeBenjamin Peterson2016-01-016-6/+6
| |
* | fix reorderingBenjamin Peterson2015-12-051-4/+4
| |
* | merge 3.2Benjamin Peterson2015-12-051-3/+4
|\ \ | |/
| * add CVE and issue numberBenjamin Peterson2015-12-051-2/+3
| |
* | Issue #25021: Correctly make sure that product.__setstate__ does not accessKristján Valur Jónsson2015-09-122-2/+20
| | | | | | | | invalid memory.
* | protect against mutation of the dict during insertion (closes #24407)Benjamin Peterson2015-07-053-7/+36
| |
* | add issue numberBenjamin Peterson2015-06-271-1/+1
| |
* | use safe allocation and reallocation macrosBenjamin Peterson2015-06-272-16/+12
| |
* | Issue 24366: Indent code (thanks to li4ick for reporting).Yury Selivanov2015-06-021-1/+1
| |
* | merge 3.2Benjamin Peterson2015-05-261-7/+3
|\ \ | |/
| * keep distutils version in sync with python version automaticallyBenjamin Peterson2015-05-261-7/+3
| |
* | merge 3.2 (#22931)Benjamin Peterson2015-05-233-3/+19
|\ \ | |/
| * allow square brackets in cookie values (closes #22931)Benjamin Peterson2015-05-233-3/+23
| |
* | be more robust against the filters list changing under us (closes #24096)Benjamin Peterson2015-05-033-6/+31
| |
* | just sort the items tuple directly (closes #24094)Benjamin Peterson2015-05-033-27/+25
| |
* | merge 3.2 (#24044)Benjamin Peterson2015-04-232-2/+7
|\ \ | |/
| * properly handle malloc failure (closes #24044)Benjamin Peterson2015-04-232-2/+7
| | | | | | | | Patch by Christian Heimes.
* | Issue #23998: PyImport_ReInitLock() now checks for lock allocation errorChristian Heimes2015-04-192-1/+10
| |
* | use PyMem_NEW to detect overflow (closes #23362)Benjamin Peterson2015-03-021-1/+1
| |
* | fix possible overflow bugs in unicodedata (closes #23367)Benjamin Peterson2015-03-022-3/+12
| |
* | merge 3.2Benjamin Peterson2015-02-183-424/+0
|\ \ | |/
| * remove RPM, since it's unused and unmaintainedBenjamin Peterson2015-02-183-424/+0
| |
| * Issue #23055: Fixed read-past-the-end error in PyUnicode_FromFormatV.Serhiy Storchaka2015-01-301-0/+2
| |
| * Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. AnalysisSerhiy Storchaka2015-01-273-33/+161
| | | | | | | | and fix by Guido Vranken.
* | add overflow checking (closes #23361)Benjamin Peterson2015-02-102-2/+14
| |
* | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests.Serhiy Storchaka2015-02-022-27/+11
| | | | | | | | Used PyMem_New to check overflow.
* | reduce memory usage of test (closes #23369)Benjamin Peterson2015-02-021-1/+2
| |
* | check for overflows in permutations() and product() (closes #23363, closes ↵Benjamin Peterson2015-02-023-2/+32
| | | | | | | | #23364)
* | check for overflow in combinations_with_replacement (closes #23365)Benjamin Peterson2015-02-023-1/+12
| |
* | detect overflow in combinations (closes #23366)Benjamin Peterson2015-02-023-0/+11
| |
* | remove extra wsBenjamin Peterson2015-02-011-1/+0
| |
* | fix possible overflow in encode_basestring_ascii (closes #23369)Benjamin Peterson2015-02-013-5/+25
| |
* | Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. AnalysisSerhiy Storchaka2015-01-273-42/+133
| | | | | | | | and fix by Guido Vranken.
* | Issue20467: clarify __init__'s roleEthan Furman2015-01-151-7/+11
| |
* | merge 3.2 (closes #23165)Benjamin Peterson2015-01-042-3/+16
|\ \ | |/
| * add some overflow checks before multiplying (closes #23165)Benjamin Peterson2015-01-042-3/+16
| |
* | merge 3.2Benjamin Peterson2015-01-016-7/+7
|\ \ | |/
| * update for copyright for 2015Benjamin Peterson2015-01-016-7/+7
| |
* | merge 3.2 (#23130)Benjamin Peterson2014-12-301-405/+0
|\ \ | |/
| * delete old ftpmirror script, which now has security bugs (closes #23130)Benjamin Peterson2014-12-301-405/+0
| |