| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 2.7.13 final bumpv2.7.13 | Benjamin Peterson | 2016-12-17 | 2 | -4/+4 |
| | | |||||
| * | revert a37cc3d926ec (#5322) | Benjamin Peterson | 2016-12-14 | 3 | -127/+12 |
| | | |||||
| * | Backed out changeset ea904d4b3634 | Benjamin Peterson | 2016-12-14 | 1 | -1/+1 |
| | | |||||
| * | fix function name | Benjamin Peterson | 2016-12-03 | 1 | -1/+1 |
| | | |||||
| * | also do not leak the mode string if creating the file fails | Benjamin Peterson | 2016-12-03 | 1 | -1/+3 |
| | | |||||
| * | do not leak the FILE * pointer in error cases of fdopen() | Benjamin Peterson | 2016-12-03 | 1 | -6/+8 |
| | | |||||
| * | Added tag v2.7.13rc1 for changeset 4d6fd49eeb14 | Benjamin Peterson | 2016-12-03 | 1 | -0/+1 |
| | | |||||
| * | python 2.7.13rc1v2.7.13rc1 | Benjamin Peterson | 2016-12-03 | 3 | -8/+8 |
| | | |||||
| * | update pydoc topics | Benjamin Peterson | 2016-12-03 | 1 | -13324/+80 |
| | | |||||
| * | inline constant into its single use | Benjamin Peterson | 2016-12-03 | 1 | -2/+1 |
| | | |||||
| * | fix refleak in reduce_2 error case | Benjamin Peterson | 2016-12-03 | 1 | -1/+1 |
| | | |||||
| * | fix refleak in null-containing error case (#21147) | Benjamin Peterson | 2016-12-03 | 1 | -1/+2 |
| | | |||||
| * | when you enter repr, you must leave, too (#25455) | Benjamin Peterson | 2016-12-03 | 1 | -0/+1 |
| | | |||||
| * | fix refleak in file handle creation error case | Benjamin Peterson | 2016-12-03 | 1 | -7/+5 |
| | | |||||
| * | fix refleak in the shift-by-zero case (#27870) | Benjamin Peterson | 2016-12-03 | 1 | -5/+6 |
| | | |||||
| * | Issue #28440: No longer add /Library/Python/site-packages, the Apple-supplied | Ned Deily | 2016-12-03 | 5 | -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 Storchaka | 2016-12-03 | 1 | -2/+2 |
| | | |||||
| * | Issue #28847: Fix spelling | Martin Panter | 2016-12-03 | 1 | -1/+1 |
| | | |||||
| * | Issue #21818: Fixed references to classes that have names matching with module | Serhiy Storchaka | 2016-12-02 | 27 | -124/+124 |
| | | | | | names. | ||||
| * | declarations to the top of the block | Benjamin Peterson | 2016-12-02 | 1 | -1/+1 |
| | | |||||
| * | increase test_smtplib timeouts | Benjamin Peterson | 2016-12-02 | 1 | -8/+8 |
| | | |||||
| * | Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. | Serhiy Storchaka | 2016-12-02 | 3 | -1/+127 |
| | | | | | Original patch by Andreas Stührk. | ||||
| * | Issue #28847: dubmdbm no longer writes the index file in when it is not | Serhiy Storchaka | 2016-12-02 | 3 | -4/+32 |
| | | | | | changed and supports reading read-only files. | ||||
| * | - Import latest config.sub config.guess files | doko@ubuntu.com | 2016-12-01 | 2 | -88/+161 |
| | | |||||
| * | Issue #11145: Fixed miscellaneous issues with C-style formatting of types | Serhiy Storchaka | 2016-12-01 | 3 | -69/+126 |
| | | | | | with custom __oct__ and __hex__. | ||||
| * | Issue #28771: Correct documentation of signatures using const | Martin Panter | 2016-12-01 | 1 | -6/+8 |
| | | |||||
| * | Issue #25701: Document that some C APIs can both set and delete items | Martin Panter | 2016-11-30 | 4 | -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 noun | Martin Panter | 2016-11-30 | 3 | -3/+3 |
| | | |||||
| * | Issue #24469: Fixed memory leak caused by int subclasses without overridden | Serhiy Storchaka | 2016-11-29 | 2 | -8/+3 |
| | | | | | tp_free (e.g. C-inherited Cython classes). | ||||
| * | Issue #28763: Use double hyphens (rendered as en-dashes) in numerical ranges | Serhiy Storchaka | 2016-11-26 | 17 | -25/+25 |
| | | | | | in the documentation. | ||||
| * | Fixed the documentation of the structure PyMethodDef. | Serhiy Storchaka | 2016-11-21 | 1 | -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. Smith | 2016-11-21 | 1 | -1/+1 |
| | | |||||
| * | Change double hyphens (en dashes) to em (longer) dashes | Martin Panter | 2016-11-21 | 6 | -7/+7 |
| | | |||||
| * | Issue #25659: Change assert to TypeError in from_buffer/_copy() | Martin Panter | 2016-11-20 | 3 | -4/+21 |
| | | | | | Based on suggestion by Eryk Sun. | ||||
| * | Issue #10656: Fix out-of-tree building on AIX | Martin Panter | 2016-11-20 | 6 | -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 import | Martin Panter | 2016-11-20 | 1 | -1/+1 |
| | | |||||
| * | Rename the new --with-optimiations flag to --enable-optimizations. | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-11-20 | 3 | -17/+18 |
| | | |||||
| * | Issue #28666: Fix removing readonly directories on Windows. | Serhiy Storchaka | 2016-11-20 | 1 | -1/+1 |
| | | |||||
| * | Issue #28666: Now test.test_support.rmtree is able to remove unwritable or | Serhiy Storchaka | 2016-11-20 | 1 | -15/+16 |
| | | | | | unreadable directories on Windows too. | ||||
| * | Issue #28666: Now test.support.rmtree is able to remove unwritable or | Serhiy Storchaka | 2016-11-20 | 2 | -1/+35 |
| | | | | | unreadable directories. | ||||
| * | Upgrade pip to 9.0.1 and setuptools to 28.8.0 | Donald Stufft | 2016-11-16 | 3 | -2/+2 |
| | | |||||
| * | Issue #28563: Make plural form selection more lenient and accepting | Serhiy Storchaka | 2016-11-14 | 2 | -8/+20 |
| | | | | | non-integer numbers. Django tests depend on this. | ||||
| * | Issue #28000: Fix gethostbyname_r() usage on AIX with _LINUX_SOURCE_COMPAT | Martin Panter | 2016-11-14 | 2 | -1/+4 |
| | | | | | Patch by Matthieu S. | ||||
| * | Issue #28016: Skip /dev/tty seekable() test on AIX | Martin Panter | 2016-11-14 | 1 | -1/+1 |
| | | |||||
| * | Issue #28676: Prevent missing 'getentropy' declaration warning on macOS. | Ned Deily | 2016-11-12 | 2 | -0/+6 |
| | | | | | Initial patch by Gareth Rees. | ||||
| * | Fixed the documentation of parse_constant argument in json.load(). | Serhiy Storchaka | 2016-11-12 | 2 | -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 Reedy | 2016-11-12 | 1 | -3/+3 |
| | | | | | Patch by Mariatta Wijaya. | ||||
| * | Issue #27854: Include idlelib/help.html in 2.7 Windows installer. | Terry Jan Reedy | 2016-11-11 | 3 | -0/+13 |
| | | | | | Without this file, clicking Help => IDLE Help did nothing. | ||||
| * | Issue #19398: Extra slash no longer added to sys.path components in case of | Serhiy Storchaka | 2016-11-11 | 3 | -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 Storchaka | 2016-11-11 | 2 | -24/+94 |
| | | |||||
