summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* bump to 2.7.9 finalv2.7.9Benjamin Peterson2014-12-105-7/+7
|
* Fix typo in OS X installer readmes.Ned Deily2014-12-102-2/+2
|
* Update the deprecated plain text version of the OS X installerNed Deily2014-12-102-45/+36
| | | | | readme to match the rtf one and update the installer build instructions README.
* Issue #17128: Use private version of OpenSSL for 2.7.9 OS X 10.5+ installer.Ned Deily2014-12-097-39/+503
| | | | | | | | | | Among other issues, the Apple-supplied 0.9.7 libs for the 10.5 ABI cannot verify newer SHA-256 certs as now used by python.org services. Document in the installer ReadMe some of the certificate management issues that users now need to be more concerned with due to PEP 476's enabling cert verification by default. For now, continue to use the Apple-supplied 0.9.8 libs for the 10.6+ installer since they use Apple private APIs to verify certificates using the system- and user-managed CA keychain stores.
* remove mention of check_hostname parameterBenjamin Peterson2014-12-071-4/+4
|
* restore test data READMEBenjamin Peterson2014-12-071-0/+2
|
* remove HTTPSConnection's check_hostname parameter (#22959)Benjamin Peterson2014-12-076-39/+15
|
* note that sslv3 may not be availableBenjamin Peterson2014-12-061-2/+5
|
* allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935)Benjamin Peterson2014-12-054-8/+27
| | | | Patch by Kurt Roeckx.
* sync idle news from 2.7 branchBenjamin Peterson2014-12-051-0/+32
|
* add a default limit for the amount of data xmlrpclib.gzip_decode will return ↵Benjamin Peterson2014-12-053-3/+32
| | | | (closes #16043)
* smtplib: limit amount read from the network (closes #16042)Benjamin Peterson2014-12-053-3/+41
|
* in poplib, limit maximum line length that we read from the network (closes ↵Benjamin Peterson2014-12-053-1/+18
| | | | | | #16041) Patch from Berker Peksag.
* nuke ancient script with dubious license (closes #12987)Benjamin Peterson2014-12-022-421/+0
|
* backout fac649bf2d10 (#9179) for further considerationBenjamin Peterson2014-11-304-67/+12
|
* this is why tests are greatBenjamin Peterson2014-11-291-1/+1
|
* add context parameter to xmlrpclib.ServerProxy (#22960)Benjamin Peterson2014-11-293-6/+26
| | | | Patch from Alex Gaynor.
* give a nice message when installer is launched w/o admin rights (closes #16561)Benjamin Peterson2014-11-271-0/+10
|
* Added tag v2.7.9rc1 for changeset 40eada278702Benjamin Peterson2014-11-250-0/+0
|
* 2.7.9rc1v2.7.9rc1Benjamin Peterson2014-11-256-11/+11
|
* update pydoc-topicsBenjamin Peterson2014-11-251-79/+80
|
* disable tests that always fail on windows (#22943)Benjamin Peterson2014-11-251-0/+1
|
* use more ugly but hopefully more robust methodBenjamin Peterson2014-11-251-1/+1
|
* handle errors without a reason attributeBenjamin Peterson2014-11-251-1/+1
|
* don't fail tests when www.python.org can't be validated by the systemBenjamin Peterson2014-11-253-5/+17
|
* remove incorrect pluralBenjamin Peterson2014-11-251-1/+1
|
* debugging: print ca certs loaded into default ctxBenjamin Peterson2014-11-241-0/+3
|
* Issue #16056: Rename test methods to avoid conflict.Berker Peksag2014-11-243-59/+1
|
* Issue #20351: Add examples for csv.DictReader and csv.DictWriter.Berker Peksag2014-11-241-0/+25
| | | | Patch by Charles-Axel Dein.
* Fix faulty indent.Ned Deily2014-11-231-1/+1
|
* is OpenIndiana actually sunos?Benjamin Peterson2014-11-231-1/+1
|
* loosen solaris testBenjamin Peterson2014-11-231-1/+1
|
* skip test_gdb on OpenIndianaBenjamin Peterson2014-11-231-0/+3
|
* pep 476: verify certificates by default (#22417)Benjamin Peterson2014-11-238-14/+69
|
* give urllib.urlopen a context parameter (closes #22927)Benjamin Peterson2014-11-235-16/+54
|
* add NEWS note for #22921Benjamin Peterson2014-11-231-0/+3
|
* fix versionchanged versionBenjamin Peterson2014-11-231-1/+1
|
* allow hostname to be passed to SSLContext even if OpenSSL doesn't support ↵Benjamin Peterson2014-11-235-27/+11
| | | | | | SNI (closes #22921) Patch from Donald Stufft.
* fix this test when sizeof(long) < sizeof(size_t)Benjamin Peterson2014-11-231-1/+1
|
* remove strange castsBenjamin Peterson2014-11-231-4/+4
|
* remove py3k warning guardBenjamin Peterson2014-11-231-2/+1
|
* allow passing cert/ssl information to urllib2.urlopen and ↵Benjamin Peterson2014-11-2311-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 Peterson2014-11-231-1/+1
| | | | called in the constructor
* Backport disabling of SSLv3 in ssl._create_stdlib_context() (issue #22638).Antoine Pitrou2014-10-171-0/+3
| | | | The backport currently doesn't achieve anything since the function isn't used (yet).
* Fix 2to3 reference link in pyporting.rst.Ned Deily2014-11-221-4/+3
|
* Remove line breaks in OS X installer README screen.Ned Deily2014-11-221-15/+3
|
* Add downloads page link to OS X installer README screens.Ned Deily2014-11-222-3/+6
|
* Issue #17293: socket.gethostbyname() can raise an exception of FreeBSD.Serhiy Storchaka2014-11-211-1/+4
|
* Add regression issue number to Misc/NEWS entry.Antoine Pitrou2014-11-211-4/+4
|
* Issue #21963: backout issue #1856 patch (avoid crashes and lockups whenAntoine Pitrou2014-11-216-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.