Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | * | Backport b533cc11d114 to fix intermittent test_urllibnet failures. | Georg Brandl | 2014-09-30 | 1 | -1/+1 | |
| | | | ||||||
| | * | Add a dummy "touch" target to the Makefile so that the custom buildbots can ↵ | Georg Brandl | 2014-09-30 | 1 | -1/+4 | |
| | | | | | | | | | | | | test this branch. | |||||
| | * | Fix-up for 0f362676460d: add missing size argument to ↵ | Georg Brandl | 2014-09-30 | 1 | -1/+5 | |
| | | | | | | | | | | | | SSLFakeFile.readline(), as in 2.6 backport 8a6def3add5b | |||||
| | * | Issue #20939: Use www.example.com instead of www.python.org to avoid test | Ned Deily | 2014-03-27 | 3 | -18/+25 | |
| | | | | | | | | | | | | failures when ssl is not present. | |||||
| | * | Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to limit | Georg Brandl | 2014-09-30 | 3 | -1/+27 | |
| | | | | | | | | | | | | line length. Patch by Emil Lind. | |||||
| | * | Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all ↵ | Georg Brandl | 2014-09-17 | 3 | -2/+7 | |
| | | | | | | | | | | | | interfaces. | |||||
| | * | Lax cookie parsing in http.cookies could be a security issue when combined | Antoine Pitrou | 2014-09-16 | 4 | -1/+16 | |
| | | | | | | | | | | | | | | | | | | with non-standard cookie handling in some Web browsers. Reported by Sergey Bobrov. | |||||
| | * | Issue #22419: Limit the length of incoming HTTP request in wsgiref server to | Georg Brandl | 2014-09-30 | 4 | -1/+18 | |
| | | | | | | | | | | | | | | | 65536 bytes and send a 414 error code for higher lengths. Patch contributed by Devin Cook. | |||||
| | * | Issue #22517: When a io.BufferedRWPair object is deallocated, clear its | Georg Brandl | 2014-09-30 | 3 | -0/+11 | |
| | | | | | | | | | | | | weakrefs. | |||||
| | * | Issue #16041: CVE-2013-1752: poplib: Limit maximum line lengths to 2048 to | Georg Brandl | 2014-09-30 | 3 | -2/+19 | |
| | | | | | | | | | | | | | | | prevent readline() calls from consuming too much memory. Patch by Jyrki Pulliainen. | |||||
| | * | Issue #16042: CVE-2013-1752: smtplib: Limit amount of data read by | Georg Brandl | 2014-09-30 | 4 | -4/+43 | |
| | | | | | | | | | | | | limiting the call to readline(). Original patch by Christian Heimes. | |||||
| | * | Issue #18747: document issue with OpenSSL's CPRNG state and fork | Christian Heimes | 2013-10-29 | 2 | -0/+12 | |
| | | | ||||||
| | * | Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read by | Georg Brandl | 2014-09-30 | 3 | -6/+43 | |
| | | | | | | | | | | | | | | | limiting the call to readline(). Original patch by Michał Jastrzębski and Giampaolo Rodola. | |||||
| | * | Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more than | Georg Brandl | 2014-09-30 | 4 | -2/+18 | |
| | | | | | | | | | | | | 100 headers are read. Adapted from patch by Jyrki Pulliainen. | |||||
| | * | Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytes | Georg Brandl | 2014-09-30 | 4 | -6/+185 | |
| | | | | | | | | | | | | | | | | | | | | | inside subjectAltName correctly. Formerly the module has used OpenSSL's GENERAL_NAME_print() function to get the string represention of ASN.1 strings for ``rfc822Name`` (email), ``dNSName`` (DNS) and ``uniformResourceIdentifier`` (URI). | |||||
| * | | Added tag v3.3.6 for changeset 971fec30da1f | Georg Brandl | 2014-10-12 | 1 | -0/+1 | |
| | | | ||||||
| * | | Bump to 3.3.6v3.3.6 | Georg Brandl | 2014-10-12 | 5 | -8/+8 | |
| | | | ||||||
| * | | Added tag v3.3.6rc1 for changeset 51317c9786f5 | Georg Brandl | 2014-10-04 | 1 | -0/+1 | |
| | | | ||||||
| * | | Issue #22518: Fixed integer overflow issues in "backslashreplace",v3.3.6rc1 | Serhiy Storchaka | 2014-10-04 | 2 | -2/+9 | |
| | | | | | | | | | | | | "xmlcharrefreplace", and "surrogatepass" error handlers. | |||||
| * | | Bump to 3.3.6rc1 | Georg Brandl | 2014-10-04 | 6 | -12/+12 | |
| | | | ||||||
* | | | Closes #22568: fix UTIME_TO_* macros in posixmodule for rare cases. | Georg Brandl | 2014-10-12 | 1 | -6/+6 | |
| | | | ||||||
* | | | Issue #14105: Change comment to reflect fix. Patch by Saimadhav Heblikar. | Terry Jan Reedy | 2014-10-12 | 1 | -7/+2 | |
| | | | ||||||
* | | | Issue #22613: Fix reprlib.Repr subclass example on Python 3. | Berker Peksag | 2014-10-12 | 1 | -4/+4 | |
| | | | | | | | | | | | | Reported by Jacques Ducasse. | |||||
* | | | Issue #21061: correctly note redirect_stdout is reentrant | Nick Coghlan | 2014-10-12 | 1 | -1/+1 | |
| | | | ||||||
* | | | asyncio doc: socket.socketpair() is not available on Windows yet | Victor Stinner | 2014-10-11 | 3 | -6/+15 | |
| | | | ||||||
* | | | asyncio doc: add examples showing the 3 ways to wait for data from an open | Victor Stinner | 2014-10-11 | 3 | -10/+168 | |
| | | | | | | | | | | | | socket | |||||
* | | | asyncio doc: cleanup Hello World examples | Victor Stinner | 2014-10-11 | 2 | -6/+11 | |
| | | | ||||||
* | | | asyncio doc: the "Get HTTP headers" example now supports HTTPS | Victor Stinner | 2014-10-11 | 1 | -6/+16 | |
| | | | ||||||
* | | | merge | Georg Brandl | 2014-10-11 | 6 | -7/+20 | |
|\ \ \ | ||||||
| * | | | Closes #18959: move optparse and imp to new "superseded modules" chapter | Georg Brandl | 2014-10-11 | 4 | -2/+15 | |
| | | | | ||||||
| * | | | Closes #21687: delimiter in Py_SetPath is platform dependent | Georg Brandl | 2014-10-11 | 1 | -1/+3 | |
| | | | | ||||||
| * | | | Closes #21675: fix ordering of description in library intro | Georg Brandl | 2014-10-11 | 1 | -4/+2 | |
| | | | | ||||||
* | | | | Issue #22601: run_forever() now consumes BaseException of the temporary task | Victor Stinner | 2014-10-11 | 2 | -2/+30 | |
|/ / / | | | | | | | | | | | | | If the coroutine raised a BaseException, consume the exception to not log a warning. The caller doesn't have access to the local task. | |||||
* | | | prevent passing NULL to memcpy (closes #22605) | Benjamin Peterson | 2014-10-11 | 1 | -1/+1 | |
| | | | | | | | | | | | | Patch by Jakub Wilk. | |||||
* | | | Issue #21986: Idle now matches interpreter in not pickling user code objects. | Terry Jan Reedy | 2014-10-10 | 1 | -10/+10 | |
| | | | | | | | | | | | | Patch by Claudiu Popa | |||||
* | | | Issue #22604: Fix assertion error in debug mode when dividing a complex ↵ | Antoine Pitrou | 2014-10-10 | 3 | -4/+16 | |
| | | | | | | | | | | | | number by (nan+0j). | |||||
* | | | Issue #15414: Clean and correct the os.path.join docs. | Zachary Ware | 2014-10-10 | 1 | -11/+16 | |
| | | | | | | | | | | | | | | | | | | In particular, correctly describe the behavior of ntpath.join. Based on a patch by Dave Sawyer. | |||||
* | | | Issue 22603: add Francisco Fernández Castaño to ACKS. | Terry Jan Reedy | 2014-10-10 | 1 | -0/+1 | |
| | | | ||||||
* | | | Issue 22603: add missing 'self'. Patch by Francisco Fernández Castaño. | Terry Jan Reedy | 2014-10-10 | 1 | -2/+2 | |
| | | | ||||||
* | | | Issue #11694: Raise ConversionError in xdrlib as documented | Petri Lehtinen | 2014-10-10 | 3 | -8/+52 | |
| | | | ||||||
* | | | test_venv: use support.rmtree() instead of shutil.rmtree() to fix sporadic | Victor Stinner | 2014-10-10 | 1 | -11/+10 | |
| | | | | | | | | | | | | failures on Windows | |||||
* | | | Issue #21456: Skip two tests in test_urllib2net.py if _ssl module not present. | Berker Peksag | 2014-10-10 | 2 | -0/+11 | |
| | | | | | | | | | | | | Patch by Remi Pointel. | |||||
* | | | Issue #22564: ssl doc: mention asyncio in the non-blocking section | Victor Stinner | 2014-10-10 | 1 | -2/+10 | |
| | | | ||||||
* | | | Issue #22564: ssl doc: mention how SSLSocket are usually created | Victor Stinner | 2014-10-10 | 1 | -0/+3 | |
| | | | ||||||
* | | | Issue #22564: ssl doc: use "class" marker to document the SSLSocket class | Victor Stinner | 2014-10-10 | 1 | -24/+26 | |
| | | | ||||||
* | | | Issue #22564: ssl doc: document read(), write(), pending, server_side and | Victor Stinner | 2014-10-10 | 1 | -0/+54 | |
| | | | | | | | | | | | | server_hostname methods and attributes of SSLSocket. | |||||
* | | | Issue #22564: ssl doc: fix typos | Victor Stinner | 2014-10-10 | 1 | -2/+2 | |
| | | | ||||||
* | | | Issue #20167: revise condition to accomodate message change. | Terry Jan Reedy | 2014-10-10 | 1 | -11/+4 | |
| | | | ||||||
* | | | #18176: Change generic UCD PropList link to version specific link. | R David Murray | 2014-10-10 | 2 | -2/+4 | |
| | | | ||||||
* | | | De-'colour'ize stdlib except for idlelib.configDialog. | Terry Jan Reedy | 2014-10-09 | 5 | -23/+25 | |
| | | | | | | | | | | | | Tweak docstrigs and comments in affected functions in idlelib.configHandler. |