summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* - Fix typos in the multiprocessing module.doko@ubuntu.com2013-05-151-2/+4
|
* - Issue #17754: Make ctypes.util.find_library() independent of the locale.doko@ubuntu.com2013-05-151-0/+2
|
* Misc/NEWS: Add 3.3.3 section and move entries made after the 3.3.2 releasedoko@ubuntu.com2013-05-151-8/+23
| | | | to the new section.
* when arguments are cells clear the locals slot (backport of #17927)Benjamin Peterson2013-05-151-0/+3
|
* - Issue #17977: The documentation for the cadefault argument's default valueBarry Warsaw2013-05-141-0/+3
| | | | in urllib.request.urlopen() is fixed to match the code.
* Issue #17968: Fix memory leak in os.listxattr().Antoine Pitrou2013-05-131-1/+3
|
* Closes #17962: Build with OpenSSL 1.0.1e on Windows.v3.3.2Georg Brandl2013-05-121-0/+2
|
* mergeGeorg Brandl2013-05-122-3/+3
|\
| * bump to 3.3.2Georg Brandl2013-05-122-3/+3
| |
* | Issue #17606: Fixed support of encoded byte strings in the XMLGeneratorSerhiy Storchaka2013-05-122-0/+5
|/ | | | | characters() and ignorableWhitespace() methods. Original patch by Sebastian Ortiz Vasquez.
* Closes issue #17732: ignore install-directory specific options inGeorg Brandl2013-05-121-0/+3
| | | | distutils.cfg when a venv is active.
* Back out patch for #1159051, which caused backwards compatibility problems.Georg Brandl2013-05-121-3/+0
|
* merge with 3.2Georg Brandl2013-05-121-0/+3
|\
| * Issue #17915: Fix interoperability of xml.sax with file objects returned byGeorg Brandl2013-05-121-0/+3
| | | | | | | | codecs.open().
* | merge with 3.2Georg Brandl2013-05-121-0/+9
|\ \ | |/
| * Issue #1159051: Back out a fix for handling corrupted gzip files thatGeorg Brandl2013-05-121-2/+3
| | | | | | | | broke backwards compatibility.
| * Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,Serhiy Storchaka2013-04-281-0/+6
| | | | | | | | such as was shipped with Centos 5 and Mac OS X 10.4.
| * Issue #17843: Remove bz2 test data that triggers antivirus warnings.Georg Brandl2013-05-121-0/+6
| |
| * Issue #15535: Fix pickling of named tuples.Georg Brandl2013-05-121-0/+3
| |
| * Close #17666: Fix reading gzip files with an extra field.Serhiy Storchaka2013-04-081-3/+14
| |
* | merge headsGeorg Brandl2013-05-121-0/+2
|\ \
| * | prevent IDLE from trying to close when sys.stdin is reassigned (#17838)Benjamin Peterson2013-05-121-0/+2
| | |
* | | -Wformat is needed by gcc 4.8 (closes #17547)Benjamin Peterson2013-05-111-0/+6
| | |
* | | Issue #17237: Fix crash in the ASCII decoder on m68k.Antoine Pitrou2013-05-111-0/+2
| | |
* | | #17841: remove missing codecs aliases from the documentation. Patch by ↵Ezio Melotti2013-05-101-0/+1
| | | | | | | | | | | | Thomas Fenzl.