Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 2.7.9rc1v2.7.9rc1 | Benjamin Peterson | 2014-11-26 | 6 | -11/+11 |
| | |||||
* | update pydoc-topics | Benjamin Peterson | 2014-11-26 | 1 | -79/+80 |
| | |||||
* | disable tests that always fail on windows (#22943) | Benjamin Peterson | 2014-11-25 | 1 | -0/+1 |
| | |||||
* | use more ugly but hopefully more robust method | Benjamin Peterson | 2014-11-25 | 1 | -1/+1 |
| | |||||
* | handle errors without a reason attribute | Benjamin Peterson | 2014-11-25 | 1 | -1/+1 |
| | |||||
* | don't fail tests when www.python.org can't be validated by the system | Benjamin Peterson | 2014-11-25 | 3 | -5/+17 |
| | |||||
* | remove incorrect plural | Benjamin Peterson | 2014-11-25 | 1 | -1/+1 |
| | |||||
* | debugging: print ca certs loaded into default ctx | Benjamin Peterson | 2014-11-25 | 1 | -0/+3 |
| | |||||
* | Issue #16056: Rename test methods to avoid conflict. | Berker Peksag | 2014-11-24 | 3 | -59/+1 |
| | |||||
* | Issue #20351: Add examples for csv.DictReader and csv.DictWriter. | Berker Peksag | 2014-11-24 | 1 | -0/+25 |
| | | | | Patch by Charles-Axel Dein. | ||||
* | Fix faulty indent. | Ned Deily | 2014-11-24 | 1 | -1/+1 |
| | |||||
* | is OpenIndiana actually sunos? | Benjamin Peterson | 2014-11-24 | 1 | -1/+1 |
| | |||||
* | loosen solaris test | Benjamin Peterson | 2014-11-24 | 1 | -1/+1 |
| | |||||
* | skip test_gdb on OpenIndiana | Benjamin Peterson | 2014-11-24 | 1 | -0/+3 |
| | |||||
* | pep 476: verify certificates by default (#22417) | Benjamin Peterson | 2014-11-24 | 8 | -14/+69 |
| | |||||
* | give urllib.urlopen a context parameter (closes #22927) | Benjamin Peterson | 2014-11-24 | 5 | -16/+54 |
| | |||||
* | add NEWS note for #22921 | Benjamin Peterson | 2014-11-24 | 1 | -0/+3 |
| | |||||
* | fix versionchanged version | Benjamin Peterson | 2014-11-24 | 1 | -1/+1 |
| | |||||
* | allow hostname to be passed to SSLContext even if OpenSSL doesn't support ↵ | Benjamin Peterson | 2014-11-24 | 5 | -27/+11 |
| | | | | | | SNI (closes #22921) Patch from Donald Stufft. | ||||
* | fix this test when sizeof(long) < sizeof(size_t) | Benjamin Peterson | 2014-11-23 | 1 | -1/+1 |
| | |||||
* | remove strange casts | Benjamin Peterson | 2014-11-23 | 1 | -4/+4 |
| | |||||
* | remove py3k warning guard | Benjamin Peterson | 2014-11-23 | 1 | -2/+1 |
| | |||||
* | allow passing cert/ssl information to urllib2.urlopen and ↵ | Benjamin Peterson | 2014-11-23 | 11 | -52/+378 |
| | | | | | | httplib.HTTPSConnection This is basically a backport of issues #9003 and #22366. | ||||
* | initialize _makefile_refs earlier so things don't blow up when close() is ↵ | Benjamin Peterson | 2014-11-23 | 1 | -1/+1 |
| | | | | called in the constructor | ||||
* | Backport disabling of SSLv3 in ssl._create_stdlib_context() (issue #22638). | Antoine Pitrou | 2014-10-17 | 1 | -0/+3 |
| | | | | The backport currently doesn't achieve anything since the function isn't used (yet). | ||||
* | Fix 2to3 reference link in pyporting.rst. | Ned Deily | 2014-11-23 | 1 | -4/+3 |
| | |||||
* | Remove line breaks in OS X installer README screen. | Ned Deily | 2014-11-22 | 1 | -15/+3 |
| | |||||
* | Add downloads page link to OS X installer README screens. | Ned Deily | 2014-11-22 | 2 | -3/+6 |
| | |||||
* | Issue #17293: socket.gethostbyname() can raise an exception of FreeBSD. | Serhiy Storchaka | 2014-11-21 | 1 | -1/+4 |
| | |||||
* | Add regression issue number to Misc/NEWS entry. | Antoine Pitrou | 2014-11-21 | 1 | -4/+4 |
| | |||||
* | Issue #21963: backout issue #1856 patch (avoid crashes and lockups when | Antoine Pitrou | 2014-11-21 | 6 | -71/+8 |
| | | | | | | daemon threads run while the interpreter is shutting down; instead, these threads are now killed when they try to take the GIL), as it seems to break some existing code. | ||||
* | Issue #22827: Backport the new Distributing and Instaling Docs from 3.4 | Donald Stufft | 2014-11-20 | 5 | -4/+403 |
| | |||||
* | Issue 22878: PEP 477 - "make install" and "make altinstall" integration | Ned Deily | 2014-11-20 | 7 | -7/+113 |
| | | | | | | | | | | | | | | The backport of ensurepip to 2.7.9 allows pip to optionally be installed or upgraded using the bundled pip provided by the new ensurepip module. The option can be specified persistently using the configure option: ./configure --with-ensurepip[=upgrade|install|no] It can also be overridden on either the "install" or "altinstall" targets: make [alt]install ENSUREPIP=[upgrade|install|no] For Python 2, the default option is "no" (do not install pip). | ||||
* | Issue #22453: Fexed reference leaks when format error messages in ceval.c. | Serhiy Storchaka | 2014-11-18 | 3 | -11/+25 |
| | | | | Warn against the use of leaking macro PyObject_REPR(). | ||||
* | Issue #18637: Fixed an error in _PyNode_SizeOf declaration. | Serhiy Storchaka | 2014-11-18 | 1 | -1/+1 |
| | | | | Patch by Roumen Petrov. | ||||
* | Issue #22193: Fixed integer overflow error in sys.getsizeof(). | Serhiy Storchaka | 2014-11-15 | 3 | -5/+35 |
| | | | | Fixed an error in _PySys_GetSizeOf declaration. | ||||
* | Update OS X installer documentation files for 2.7.9. | Ned Deily | 2014-11-15 | 3 | -89/+155 |
| | |||||
* | Issue #22877: PEP 477 - OS X installer for 2.7.9 now installs pip. | Ned Deily | 2014-11-15 | 3 | -23/+90 |
| | |||||
* | Fix description. | Georg Brandl | 2014-11-14 | 1 | -1/+1 |
| | |||||
* | Closes #22868: make example less ambiguous. | Georg Brandl | 2014-11-14 | 1 | -3/+3 |
| | |||||
* | Close #22300 by tweaking 2.7.9 What's New announcements | Nick Coghlan | 2014-11-14 | 1 | -0/+8 |
| | |||||
* | Issue #22850: Backport ensurepip Windows installer changes to 2.7 | Steve Dower | 2014-11-13 | 1 | -14/+33 |
| | |||||
* | Define a __hash__ to quiet down a -3 warning | Donald Stufft | 2014-11-11 | 1 | -0/+5 |
| | |||||
* | Upgrade setuptools to 7.0 | Donald Stufft | 2014-11-11 | 2 | -1/+1 |
| | |||||
* | Implement PEP 477 - Backport ensurepip (PEP 453) to 2.7 | Donald Stufft | 2014-11-11 | 15 | -1/+3201 |
| | | | | | | | | | | | | | | | | | | | * 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. | ||||
* | Issue #22845: Improved formatting of dis documentation. | Serhiy Storchaka | 2014-11-11 | 1 | -5/+5 |
| | |||||
* | Issue #12728: Different Unicode characters having the same uppercase but | Serhiy Storchaka | 2014-11-10 | 3 | -11/+124 |
| | | | | different lowercase are now matched in case-insensitive regular expressions. | ||||
* | Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endian | Serhiy Storchaka | 2014-11-10 | 2 | -2/+5 |
| | | | | platforms. | ||||
* | Use internal links where possible | Raymond Hettinger | 2014-11-10 | 2 | -4/+2 |
| | |||||
* | Issue 22830: Clarify docs for functools.cmp_to_key(). | Raymond Hettinger | 2014-11-10 | 1 | -4/+7 |
| |