summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 2.7.13 final bumpv2.7.13Benjamin Peterson2016-12-172-4/+4
|
* revert a37cc3d926ec (#5322)Benjamin Peterson2016-12-143-127/+12
|
* Backed out changeset ea904d4b3634Benjamin Peterson2016-12-141-1/+1
|
* fix function nameBenjamin Peterson2016-12-031-1/+1
|
* also do not leak the mode string if creating the file failsBenjamin Peterson2016-12-031-1/+3
|
* do not leak the FILE * pointer in error cases of fdopen()Benjamin Peterson2016-12-031-6/+8
|
* Added tag v2.7.13rc1 for changeset 4d6fd49eeb14Benjamin Peterson2016-12-031-0/+1
|
* python 2.7.13rc1v2.7.13rc1Benjamin Peterson2016-12-033-8/+8
|
* update pydoc topicsBenjamin Peterson2016-12-031-13324/+80
|
* inline constant into its single useBenjamin Peterson2016-12-031-2/+1
|
* fix refleak in reduce_2 error caseBenjamin Peterson2016-12-031-1/+1
|
* fix refleak in null-containing error case (#21147)Benjamin Peterson2016-12-031-1/+2
|
* when you enter repr, you must leave, too (#25455)Benjamin Peterson2016-12-031-0/+1
|
* fix refleak in file handle creation error caseBenjamin Peterson2016-12-031-7/+5
|
* fix refleak in the shift-by-zero case (#27870)Benjamin Peterson2016-12-031-5/+6
|
* Issue #28440: No longer add /Library/Python/site-packages, the Apple-suppliedNed Deily2016-12-035-35/+59
| | | | | | | | | | system Python site-packages directory, to sys.path for macOS framework builds. The coupling between the two Python instances often caused confusion and, as of macOS 10.12, changes to the site-packages layout can cause pip component installations to fail. This change reverts the effects introduced in 2.7.0 by Issue #4865. If you are using a package with both the Apple system Python 2.7 and a user-installed Python 2.7, you will need to ensure that copies of the package are installed with both Python instances.
* Try to fix test.test_support.rmtree() on Windows for fixing issue28847 tests.Serhiy Storchaka2016-12-031-2/+2
|
* Issue #28847: Fix spellingMartin Panter2016-12-031-1/+1
|
* Issue #21818: Fixed references to classes that have names matching with moduleSerhiy Storchaka2016-12-0227-124/+124
| | | | names.
* declarations to the top of the blockBenjamin Peterson2016-12-021-1/+1
|
* increase test_smtplib timeoutsBenjamin Peterson2016-12-021-8/+8
|
* Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code.Serhiy Storchaka2016-12-023-1/+127
| | | | Original patch by Andreas Stührk.
* Issue #28847: dubmdbm no longer writes the index file in when it is notSerhiy Storchaka2016-12-023-4/+32
| | | | changed and supports reading read-only files.
* - Import latest config.sub config.guess filesdoko@ubuntu.com2016-12-012-88/+161
|
* Issue #11145: Fixed miscellaneous issues with C-style formatting of typesSerhiy Storchaka2016-12-013-69/+126
| | | | with custom __oct__ and __hex__.
* Issue #28771: Correct documentation of signatures using constMartin Panter2016-12-011-6/+8
|
* Issue #25701: Document that some C APIs can both set and delete itemsMartin Panter2016-11-304-32/+57
| | | | | | Also document that using the dedicated functions to delete items is preferred. Using PyObject_SetAttr/String() and PySequence_SetItem/Slice() for deletion is deprecated.
* Issue #28820: Fix spelling of “practice” as a nounMartin Panter2016-11-303-3/+3
|
* Issue #24469: Fixed memory leak caused by int subclasses without overriddenSerhiy Storchaka2016-11-292-8/+3
| | | | tp_free (e.g. C-inherited Cython classes).
* Issue #28763: Use double hyphens (rendered as en-dashes) in numerical rangesSerhiy Storchaka2016-11-2617-25/+25
| | | | in the documentation.
* Fixed the documentation of the structure PyMethodDef.Serhiy Storchaka2016-11-211-2/+2
| | | | The fields ml_name and ml_doc are of type "const char *" rather of "char *".
* replace --with-optimizations references with --enable-optimizations in docs.Gregory P. Smith2016-11-211-1/+1
|
* Change double hyphens (en dashes) to em (longer) dashesMartin Panter2016-11-216-7/+7
|
* Issue #25659: Change assert to TypeError in from_buffer/_copy()Martin Panter2016-11-203-4/+21
| | | | Based on suggestion by Eryk Sun.
* Issue #10656: Fix out-of-tree building on AIXMartin Panter2016-11-206-3/+9
| | | | | The ld_so_aix script and python.exp file are created in the build directory. Patch by Tristan Carel and Michael Haubenwallner.
* Issue #28666: Fix stat importMartin Panter2016-11-201-1/+1
|
* Rename the new --with-optimiations flag to --enable-optimizations.Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-11-203-17/+18
|
* Issue #28666: Fix removing readonly directories on Windows.Serhiy Storchaka2016-11-201-1/+1
|
* Issue #28666: Now test.test_support.rmtree is able to remove unwritable orSerhiy Storchaka2016-11-201-15/+16
| | | | unreadable directories on Windows too.
* Issue #28666: Now test.support.rmtree is able to remove unwritable orSerhiy Storchaka2016-11-202-1/+35
| | | | unreadable directories.
* Upgrade pip to 9.0.1 and setuptools to 28.8.0Donald Stufft2016-11-163-2/+2
|
* Issue #28563: Make plural form selection more lenient and acceptingSerhiy Storchaka2016-11-142-8/+20
| | | | non-integer numbers. Django tests depend on this.
* Issue #28000: Fix gethostbyname_r() usage on AIX with _LINUX_SOURCE_COMPATMartin Panter2016-11-142-1/+4
| | | | Patch by Matthieu S.
* Issue #28016: Skip /dev/tty seekable() test on AIXMartin Panter2016-11-141-1/+1
|
* Issue #28676: Prevent missing 'getentropy' declaration warning on macOS.Ned Deily2016-11-122-0/+6
| | | | Initial patch by Gareth Rees.
* Fixed the documentation of parse_constant argument in json.load().Serhiy Storchaka2016-11-122-3/+3
| | | | parse_constant doesn't get called on 'null', 'true', 'false' since 3.1/2.7.
* Issue #28615: Backport imaginary/complex number text from 3.x.Terry Jan Reedy2016-11-121-3/+3
| | | | Patch by Mariatta Wijaya.
* Issue #27854: Include idlelib/help.html in 2.7 Windows installer.Terry Jan Reedy2016-11-113-0/+13
| | | | Without this file, clicking Help => IDLE Help did nothing.
* Issue #19398: Extra slash no longer added to sys.path components in case ofSerhiy Storchaka2016-11-113-5/+11
| | | | | empty compile-time PYTHONPATH components. This fixes some tests in -S or -I modes.
* Issue #23839: Various caches now are cleared before running every test file.Serhiy Storchaka2016-11-112-24/+94
|