Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ↵ | Steve Dower | 2014-11-22 | 1 | -0/+5 |
| | | | | which will be used for the official 3.5 release. | ||||
* | Issue #22095: Fixed HTTPConnection.set_tunnel with default port. The port | Serhiy Storchaka | 2014-12-12 | 1 | -0/+3 |
|\ | | | | | | | value in the host header was set to "None". Patch by Demian Brecht. | ||||
| * | Issue #22095: Fixed HTTPConnection.set_tunnel with default port. The port | Serhiy Storchaka | 2014-12-12 | 1 | -0/+3 |
| | | | | | | | | value in the host header was set to "None". Patch by Demian Brecht. | ||||
* | | Merge 3.4 | Terry Jan Reedy | 2014-12-10 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | Issue #23006: Improve the documentation and indexing of dict.__missing__. | Terry Jan Reedy | 2014-12-10 | 1 | -0/+4 |
| | | | | | | | | | | Add an entry in the language datamodel special methods section. Revise and index its discussion in the stdtypes mapping/dict section. | ||||
* | | Issue #23016: A warning no longer produces an AttributeError when the program | Serhiy Storchaka | 2014-12-10 | 1 | -0/+3 |
|\ \ | |/ | | | | | is run with pythonw.exe. | ||||
| * | Issue #23016: A warning no longer produces AttributeError when the program | Serhiy Storchaka | 2014-12-10 | 1 | -0/+3 |
| | | | | | | | | is run with pythonw.exe. | ||||
* | | Issue #21775: shutil.copytree(): fix crash when copying to VFAT | Berker Peksag | 2014-12-10 | 1 | -0/+6 |
|\ \ | |/ | | | | | | | | | | | | | | | An exception handler assumed that that OSError objects always have a 'winerror' attribute. That is not the case, so the exception handler itself raised AttributeError when run on Linux (and, presumably, any other non-Windows OS). Patch by Greg Ward. | ||||
| * | Issue #21775: shutil.copytree(): fix crash when copying to VFAT | Berker Peksag | 2014-12-10 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | An exception handler assumed that that OSError objects always have a 'winerror' attribute. That is not the case, so the exception handler itself raised AttributeError when run on Linux (and, presumably, any other non-Windows OS). Patch by Greg Ward. | ||||
| * | inspect: Fix getsource() to load updated source of reloaded module | Yury Selivanov | 2014-12-08 | 1 | -0/+3 |
| | | | | | | | | Issue #1218234. Initial patch by Berker Peksag. | ||||
| * | NEWS: Remove duplicate entry | Yury Selivanov | 2014-12-08 | 1 | -3/+0 |
| | | |||||
* | | inspect: Fix getsource() to load updated source of reloaded module | Yury Selivanov | 2014-12-08 | 1 | -0/+3 |
| | | | | | | | | Issue #1218234. Initial patch by Berker Peksag. | ||||
* | | Issue #21740: Support wrapped callables in pydoc. Patch by Claudiu Popa. | Yury Selivanov | 2014-12-08 | 1 | -0/+2 |
| | | |||||
* | | NEWS: Add news entry for issue #23009. | Yury Selivanov | 2014-12-08 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | NEWS: Add news entry for issue #23009. | Yury Selivanov | 2014-12-08 | 1 | -0/+6 |
| | | |||||
* | | merge 3.4 (#22959) | Benjamin Peterson | 2014-12-07 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | HTTPSConnection: prefer the context's check_hostname attribute over the ↵ | Benjamin Peterson | 2014-12-07 | 1 | -0/+3 |
| | | | | | | | | constructor parameter (#22959) | ||||
* | | Issue #22696: Add function :func:`sys.is_finalizing` to know about ↵ | Antoine Pitrou | 2014-12-07 | 1 | -0/+3 |
| | | | | | | | | interpreter shutdown. | ||||
* | | merge 3.4 (#22935) | Benjamin Peterson | 2014-12-06 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935) | Benjamin Peterson | 2014-12-06 | 1 | -0/+3 |
| | | | | | | | | Patch by Kurt Roeckx. | ||||
* | | merge 3.4 (#16043) | Benjamin Peterson | 2014-12-06 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | merge 3.3 (#16043) | Benjamin Peterson | 2014-12-06 | 1 | -0/+3 |
| |\ | |||||
| | * | merge 3.2 (#16043) | Benjamin Peterson | 2014-12-06 | 1 | -0/+3 |
| | |\ | |||||
| | | * | add a default limit for the amount of data xmlrpclib.gzip_decode will return ↵ | Benjamin Peterson | 2014-12-06 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | (closes #16043) | ||||
| | | * | #16040: fix unlimited read from connection in nntplib. | Georg Brandl | 2014-10-12 | 1 | -0/+4 |
| | | | | |||||
| | | * | Bump to 3.2.6rc1 | Georg Brandl | 2014-10-04 | 1 | -1/+1 |
| | | | | |||||
| | | * | Fix unicode_aswidechar() for 4b unicode and 2b wchar_t (AIX). | Georg Brandl | 2014-10-01 | 1 | -0/+6 |
| | | | | |||||
| | | * | Issue #19855: uuid.getnode() on Unix now looks on the PATH for the | Georg Brandl | 2014-09-30 | 1 | -0/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | executables used to find the mac address, with /sbin and /usr/sbin as fallbacks. Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment with virtual interface. Original patch by Kent Frazier. Issue #18784: The uuid module no more attempts to load libc via ctypes.CDLL, if all necessary functions are already found in libuuid. Patch by Evgeny Sologubov. Issue #16102: Make uuid._netbios_getnode() work again on Python 3. | ||||
| | | * | Issue #20939: Use www.example.com instead of www.python.org to avoid test | Ned Deily | 2014-03-27 | 1 | -0/+7 |
| | | | | | | | | | | | | | | | | 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 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | line length. Patch by Emil Lind. | ||||
| | | * | Issue #22421 - Secure pydoc server run. Bind it to localhost instead of all ↵ | Georg Brandl | 2014-09-17 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | interfaces. | ||||
| | | * | Lax cookie parsing in http.cookies could be a security issue when combined | Antoine Pitrou | 2014-09-16 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | 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 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | 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 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | weakrefs. | ||||
| | | * | Issue #16041: CVE-2013-1752: poplib: Limit maximum line lengths to 2048 to | Georg Brandl | 2014-09-30 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | 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 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | limiting the call to readline(). Original patch by Christian Heimes. | ||||
| | | * | Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read by | Georg Brandl | 2014-09-30 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | 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 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | 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 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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). | ||||
* | | | | Merge with 3.4. | Terry Jan Reedy | 2014-12-06 | 1 | -0/+3 |
|\ \ \ \ | |/ / / | |||||
| * | | | Issue #16893: Update Idle doc chapter to match current Idle and add new | Terry Jan Reedy | 2014-12-06 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | information. | ||||
| * | | | Issue #22914: Update the Python 2/3 porting HOWTO to describe a more | Brett Cannon | 2014-12-05 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | automated process. | ||||
* | | | | Issue #22394: Add a 'venv' command to Doc/Makefile. | Brett Cannon | 2014-12-05 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will create a venv using the interpreter specified by the PYTHON variable for the Makefile that also install Sphinx. Typical usage is expected to be: cd Doc make venv PYTHON=../python make html PYTHON=venv/bin/python3 | ||||
* | | | | Issue #14099: ZipFile.open() no longer reopen the underlying file. Objects | Serhiy Storchaka | 2014-12-03 | 1 | -0/+5 |
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | returned by ZipFile.open() can now operate independently of the ZipFile even if the ZipFile was created by passing in a file-like object as the first argument to the constructor. | ||||
| * | | | Issue #14099: ZipFile.open() no longer reopen the underlying file. Objects | Serhiy Storchaka | 2014-12-03 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | returned by ZipFile.open() can now operate independently of the ZipFile even if the ZipFile was created by passing in a file-like object as the first argument to the constructor. | ||||
* | | | | Issue #20335: bytes constructor now raises TypeError when encoding or errors | Serhiy Storchaka | 2014-12-02 | 1 | -0/+3 |
|\ \ \ \ | |/ / / | | | | | | | | | is specified with non-string argument. Based on patch by Renaud Blanch. | ||||
| * | | | Issue #20335: bytes constructor now raises TypeError when encoding or errors | Serhiy Storchaka | 2014-12-02 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | is specified with non-string argument. Based on patch by Renaud Blanch. | ||||
* | | | | Moved Misc/NEWS entry to right section. | Serhiy Storchaka | 2014-12-02 | 1 | -2/+2 |
| | | | | |||||
* | | | | Trunk merge. | Barry Warsaw | 2014-12-01 | 1 | -3/+0 |
|\ \ \ \ | |||||
| * | | | | Remove spurious header in middle of Library section. | Terry Jan Reedy | 2014-12-01 | 1 | -3/+0 |
| | | | | | | | | | | | | | | | | | | | | I suspect this was leftover from a merge conflict resolution. |