summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
...
* Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the inputVictor Stinner2013-06-241-3/+4
| | | | | | string in longer than 2 gigabytes, and ssl.SSLContext.load_cert_chain() raises a ValueError if the password is longer than 2 gigabytes. The ssl module does not support partial write.
* Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raiseSerhiy Storchaka2013-06-231-0/+3
| | | | OverflowError when an argument of %c format is out of range.
* Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write()Victor Stinner2013-06-231-0/+4
| | | | | and in ssl.SSLContext.load_cert_chain() for strings and passwords longer than 2 gigabytes.
* Issue #18137: Detect integer overflow on precision in float.__format__() andVictor Stinner2013-06-231-0/+3
| | | | complex.__format__().
* Add -b and -X options to python man page.Senthil Kumaran2013-06-201-4/+18
| | | | Patch contributed by Corey Brune.
* fix libffi build on AIX (closes #18248)Benjamin Peterson2013-06-191-0/+2
|
* merge headsChristian Heimes2013-06-192-0/+4
|\
| * Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn.Antoine Pitrou2013-06-182-0/+4
| |
* | Issue #18259: Declare sethostname in socketmodule.c for AIXChristian Heimes2013-06-191-0/+2
|/
* Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-dataSerhiy Storchaka2013-06-171-0/+3
| | | | when \r\n appears at end of 65535 bytes without other newlines.
* news entry for subprocess double close fix.Gregory P. Smith2013-06-161-0/+4
|
* #18113: Objects associated to a curses.panel object with set_userptr() were ↵Andrew Kuchling2013-06-151-0/+3
| | | | | | leaked. Reported by Atsuo Ishimoto.
* Drop some dead imports of impBrett Cannon2013-06-151-0/+2
|
* Issue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1 ↵Christian Heimes2013-06-141-0/+5
| | | | on Windows
* #18196: Avoid displaying spurious SystemExit tracebacks.Roger Serwy2013-06-121-0/+2
|
* #5492: Avoid traceback when exiting IDLE caused by a race condition.Roger Serwy2013-06-121-0/+2
|
* #17511: Keep IDLE find dialog open after clicking "Find Next".Roger Serwy2013-06-112-0/+4
| | | | Original patch by Sarah K.
* remove MAX_MAXCHAR because it's unsafe for computing maximum codepoitn value ↵Benjamin Peterson2013-06-101-0/+3
| | | | (see #18183)
* Issue #18180: Fix ref leak in _PyImport_GetDynLoadWindows().Richard Oudkerk2013-06-101-0/+2
|
* Issue #16102: Make uuid._netbios_getnode() work again on Python 3.Serhiy Storchaka2013-06-091-0/+2
|
* Issue #15239: Make mkstringprep.py work again on Python 3.Serhiy Storchaka2013-06-091-0/+5
|
* Issue #18038: SyntaxError raised during compilation sources with illegalSerhiy Storchaka2013-06-091-0/+3
| | | | encoding now always contains an encoding name.
* #18126: update NumPy links in the documentation. Patch by Yury V. Zaytsev.Ezio Melotti2013-06-081-0/+1
|
* #17691: test_univnewlines now works with unittest test discovery. Patch by ↵Ezio Melotti2013-06-081-0/+3
| | | | Zachary Ware.
* Issue #18055: Move to importlib from imp for IDLE.Brett Cannon2013-06-071-0/+2
|
* Close #18109: os.uname() now decodes fields from the locale encoding, andVictor Stinner2013-06-031-1/+5
| | | | | socket.gethostname() now decodes the hostname from the locale encoding, instead of using the UTF-8 encoding in strict mode.
* Issue #18094: test_uuid no more reports skipped tests as passed.Serhiy Storchaka2013-05-311-0/+2
|
* Issue #15392: Finish news entry.Terry Jan Reedy2013-05-311-1/+1
|
* #17403: urllib.parse.robotparser normalizes the urls before adding to ruleline.Senthil Kumaran2013-05-291-0/+4
| | | | This helps in handling certain types invalid urls in a conservative manner.
* Issue #18080: When building a C extension module on OS X, if the compilerNed Deily2013-05-281-0/+5
| | | | | | is overriden with the CC environment variable, use the new compiler as the default for linking if LDSHARED is not also overriden. This restores Distutils behavior introduced in 3.2.3 and inadvertently dropped in 3.3.0.
* Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when rawSerhiy Storchaka2013-05-281-0/+3
| | | | stream's read() returns more bytes than requested.
* Issue #18011: base64.b32decode() now raises a binascii.Error if there areSerhiy Storchaka2013-05-281-0/+4
| | | | | non-alphabet characters present in the input string to conform a docstring. Updated the module documentation.
* Issue #13772: Restored directory detection of targets in `os.symlink` on ↵Jason R. Coombs2013-05-281-0/+5
| | | | Windows, which was temporarily removed in Python 3.2.3 due to an incomplete implementation. The implementation now works even if the symlink is created in a location other than the current directory.
* Issue #15392: Create a unittest framework for IDLE.Terry Jan Reedy2013-05-282-0/+4
| | | | Preliminary patch by Rajagopalasarma Jayakrishnan.
* Issue #17953: document that sys.modules shouldn't be replaced (thanksBrett Cannon2013-05-241-0/+3
| | | | | | | | | to interp->modules) and that deleting essential items from the dict can cause Python to blow up. Thanks to Terry Reedy for coming up with initial wording and Yogesh Chaudhari for coming up with a patch using that wording in parallel to my own patch.
* Issue #17269: Workaround for a platform bug in getaddrinfo on OSXRonald Oussoren2013-05-241-0/+3
| | | | | Without this patch socket.getaddrinfo crashed when called with some unusual argument combinations.
* Issue #17532: Always include Options menu for IDLE on OS X.Ned Deily2013-05-222-0/+4
| | | | Patch by Guilherme Simões.
* Issue #16986: ElementTree now correctly parses a string input not only whenSerhiy Storchaka2013-05-221-0/+3
| | | | an internal XML encoding is UTF-8 or US-ASCII.
* Issue #17844: Add links to encoders and decoders for bytes-to-bytes codecs.Serhiy Storchaka2013-05-221-1/+2
|
* #14146: Highlight source line while debugging on Windows.Roger Serwy2013-05-211-0/+6
|
* #14097: improve the "introduction" page of the tutorial.Ezio Melotti2013-05-201-0/+2
|
* Issue #11995: test_pydoc doesn't import all sys.path modules anymore.Antoine Pitrou2013-05-191-0/+5
|
* Issue #17812: Fixed quadratic complexity of base64.b32encode().Serhiy Storchaka2013-05-191-0/+2
|
* Issue #17901: fix TreeBuilder construction for an explicit element_factory=NoneEli Bendersky2013-05-181-0/+1
| | | | Based on report and patch by Aaron Oakley.
* Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of ↵Antoine Pitrou2013-05-181-0/+3
| | | | service using certificates with many wildcards (CVE-2013-2099).
* only recursively expand in the format spec (closes #17644)Benjamin Peterson2013-05-171-0/+3
|
* Issue #17981: Closed socket on error in SysLogHandler.Vinay Sajip2013-05-161-0/+2
|
* Add Nick Sloan for his contribution to #17732Brian Curtin2013-05-161-0/+1
|
* complain about "global __class__" in a class body (closes #17983)Benjamin Peterson2013-05-151-0/+3
|
* post-release update.Georg Brandl2013-05-151-5/+5
|