summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Use correct PyGC_Head size in tests for issue #25421.Serhiy Storchaka2015-12-191-1/+1
|
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-1913-13/+46
| | | | | This allows sys.getsize() to work correctly with their subclasses with __slots__ defined.
* Issue #25905: Revert unwanted conversion of ' to ’ RIGHT SINGLE QUOTATION ↵Terry Jan Reedy2015-12-181-1/+1
| | | | MARK.
* Issue #25899: Fixed typo in .bzrignore.Serhiy Storchaka2015-12-181-1/+1
|
* Issue #22088: Port base64 character ignoring doc and test from 857d9fe60169Martin Panter2015-12-143-7/+21
|
* Issue #20837: Base-64 alphabet clarification from revision 1853679c6f71Martin Panter2015-12-141-1/+2
|
* #25495: Clarify b2a_base64 documentation vis 57 bytes.R David Murray2015-12-131-3/+5
|
* Fixes issue #20954: _args_from_interpreter_flags used by multiprocessingGregory P. Smith2015-12-132-1/+6
| | | | | and some tests no longer behaves incorrectly in the presence of the PYTHONHASHSEED environment variable.
* Issue #25696: Don't ignore errors in 'make bininstall' on creating $(LIBPC) ↵Victor Stinner2015-12-131-1/+1
| | | | directory
* Issue #25696: Fix installation of Python on UNIX with make -j9.Victor Stinner2015-12-132-0/+6
|
* Issue #25809: Skip testing platform-dependent French thousands separatorMartin Panter2015-12-121-1/+3
|
* Fixed possible leaks in ElementTree parser.Serhiy Storchaka2015-12-091-2/+8
|
* Clarify that only *documentation* bugs should go to docs@python.orgZachary Ware2015-12-091-1/+2
|
* Issue25814: Propagate all errors from custom XML parser handlersSerhiy Storchaka2015-12-061-73/+45
| | | | in ElementTree.iterparse().
* merge headsNed Deily2015-12-061-1/+1
|\
| * remove pointless keys() callBenjamin Peterson2015-12-061-1/+1
| |
* | Issue #25798: Update OS X 10.5+ 32-bit-only installer to buildNed Deily2015-12-063-11/+19
|/ | | | and link with OpenSSL 1.0.2e.
* off to 2.7.12 we goBenjamin Peterson2015-12-051-1/+1
|
* merge 2.7.11 branchBenjamin Peterson2015-12-053-6/+4
|\
| * Added tag v2.7.11 for changeset 6d1b6a68f775Benjamin Peterson2015-12-051-0/+1
| |
| * 2.7.11 finalv2.7.11Benjamin Peterson2015-12-052-6/+3
| |
* | make consulting save_modules O(1) rather than O(n)Benjamin Peterson2015-12-051-1/+1
| |
* | merge 2.7.11 branchBenjamin Peterson2015-12-051-2/+3
|\ \ | |/
| * add CVE and issue numberBenjamin Peterson2015-12-051-2/+3
| |
* | Issue #14285: Do not catch ImportError from __init__.py in runpyMartin Panter2015-12-035-23/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | Initialize package before calling get_loader() for __main__, so that we do not incorrectly handle ImportError from __init__.py. When runpy is used from the Python CLI, use an internal exception rather than ImportError, to avoid catching an unexpected ImportError. Also simplify message formatting: str() is redundant with %s. Also fix test_dash_m_error_code_is_one() in test_cmd_line_script, which was failing because the test package was not in the current directlry, rather the desired ValueError.
* | Issue #6478: _strptime's regexp cache now is reset after changing timezoneSerhiy Storchaka2015-12-034-17/+86
| | | | | | | | with time.tzset().
* | Issue #19543: Added Py3k warning for decoding unicode.Serhiy Storchaka2015-12-033-4/+11
| |
* | Fix test_doctest in verbose modeVictor Stinner2015-12-021-2/+2
| |
* | Fixed reference leak when read truncated pickle.Serhiy Storchaka2015-11-301-1/+4
| |
* | Issue #25718: Fixed copying object with state with boolean value is false.Serhiy Storchaka2015-11-303-2/+13
| |
* | Fixed yet one syntax error in test_xpickle in Python 2.5.Serhiy Storchaka2015-11-291-1/+1
| |
* | Fixed Py3k warnings in tests for issue #24731.Serhiy Storchaka2015-11-293-22/+29
| |
* | Trying to fix test_xpickle with python 2.4 and 2.5.Serhiy Storchaka2015-11-291-2/+2
| |
* | Issue #25742: Try to fix test_locale on WindowsVictor Stinner2015-11-291-8/+8
| |
* | Got rid of "with" for compatibility test_xpickle with Python 2.5.Serhiy Storchaka2015-11-291-4/+11
| |
* | Issue #25761: Added more test cases for testing unpickling broken data.Serhiy Storchaka2015-11-293-76/+170
| | | | | | | | Output raised exception at verbose level 2 (-vv).
* | Closes #25742: locale.setlocale() now accepts a Unicode string for its secondVictor Stinner2015-11-273-1/+18
| | | | | | | | parameter.
* | Issue #23914: Fix test_xpickle with python 2.4 and 2.5Zachary Ware2015-11-271-53/+52
| | | | | | | | Remove 'b' prefix from strings, remove unused import.
* | Issue #10131: Fixed deep copying of minidom documents. Based on patchSerhiy Storchaka2015-11-263-47/+59
| | | | | | | | by Marian Ganisin.
* | Issue #25622: Rename to PythonValuesTestCase and enable for non-WindowsMartin Panter2015-11-261-2/+1
| |
* | Fixed compilation error introduced in 745fd5550bc0.Serhiy Storchaka2015-11-261-1/+1
| |
* | Issue #19687: Fixed possible integer overflows in ElementTree.Serhiy Storchaka2015-11-251-6/+23
| | | | | | | | Based on patch by Christian Heimes.
* | Issue #24097: Fixed crash in object.__reduce__() if slot name is freed insideSerhiy Storchaka2015-11-253-2/+30
| | | | | | | | __getattr__. Original patch by Antoine Pitrou.
* | Issue #25616: Tests for OrderedDict are extracted from test_collectionsSerhiy Storchaka2015-11-253-292/+316
| | | | | | | | into separate file test_ordered_dict.
* | Issue #25703: Skip test_43581 if one of stdout or stderr is redirected.Serhiy Storchaka2015-11-251-1/+4
| |
* | Issue #25697: Fixed rough alphabetical order in Misc/ACKS.Serhiy Storchaka2015-11-251-15/+14
| |
* | Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-259-6/+66
| | | | | | | | | | __str__, __trunc__, and __float__ returning instances of subclasses of str, long, and float to subclasses of str, long, and float correspondingly.
* | Issue #25725: Fixed a reference leak in cPickle.loads() when unpicklingSerhiy Storchaka2015-11-252-19/+13
| | | | | | | | invalid data including tuple instructions.
* | Issue #25508: Clarify documentation on LogRecord args attribute.Vinay Sajip2015-11-241-1/+3
| |
* | Fix non-ascii characterRaymond Hettinger2015-11-241-1/+1
| |