Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Replay changeset 70248:c714e2f92f63 from fubar branch. Original commit | Barry Warsaw | 2011-05-23 | 2 | -1/+20 | |
| | | | | | | | | | | | | message: Cross-port changes for 2.6.7rc2 from the Subversion branch. | |||||
| * | Replay changeset 70238:03e488b5c009 from fubar branch. Original commit | Barry Warsaw | 2011-05-23 | 2 | -8/+17 | |
| | | | | | | | | | | | | | | | | message: Reconcile with the 2.6svn branch. The 2.6.7 release will be made from Subversion, but there were differences, so this brings them in sync. These changes should *not* propagate to any newer versions. | |||||
* | | Issue #13883: Document all platforms PYTHONCASEOK works on. | Brett Cannon | 2012-01-26 | 1 | -0/+2 | |
| | | ||||||
* | | Issue #12501: merge the discordant NEWS entries. | Florent Xicluna | 2012-01-24 | 1 | -4/+2 | |
| | | ||||||
* | | Issue #11235: Fix OverflowError when trying to import a source file whose ↵ | Antoine Pitrou | 2012-01-24 | 1 | -0/+3 | |
| | | | | | | | | modification time doesn't fit in a 32-bit timestamp. | |||||
* | | NEWS entry for Issue6631 | Senthil Kumaran | 2012-01-21 | 1 | -0/+2 | |
| | | ||||||
* | | Issue #2134: Clarify token.OP handling rationale in tokenize documentation. | Meador Inge | 2012-01-19 | 1 | -0/+3 | |
| | | ||||||
* | | Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects. | Nadeem Vawda | 2012-01-18 | 1 | -0/+3 | |
| | | ||||||
* | | Closes #13803: Under Solaris, distutils doesn't include bitness in the ↵ | Jesus Cea | 2012-01-18 | 1 | -0/+3 | |
| | | | | | | | | directory name | |||||
* | | Issue #13589: Fix some serialization primitives in the aifc module. | Antoine Pitrou | 2012-01-17 | 2 | -0/+4 | |
| | | | | | | | | Patch by Oleg Plakhotnyuk. | |||||
* | | Berkeley DB: Erratic behaviour of "DBEnv->rep_elect()" because a typo | Jesus Cea | 2012-01-16 | 1 | -0/+3 | |
| | | ||||||
* | | Issue #13774: json: Fix a SystemError when a bogus encoding is passed to | Amaury Forgeot d'Arc | 2012-01-13 | 1 | -0/+3 | |
| | | | | | | | | json.loads(). | |||||
* | | Issue #13764: remove outdated script Misc/build.sh | Antoine Pitrou | 2012-01-13 | 1 | -279/+0 | |
| | | ||||||
* | | - Issue #13642: Unquote before b64encoding user:password during Basic | Senthil Kumaran | 2012-01-10 | 1 | -0/+3 | |
| | | | | | | | | Authentication. Patch contributed by Joonas Kuorilehto and Michele Orrù. | |||||
* | | Issue #13636: Weak ciphers are now disabled by default in the ssl module | Antoine Pitrou | 2012-01-03 | 1 | -0/+3 | |
| | | | | | | | | (except when SSLv2 is explicitly asked for). | |||||
* | | Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by | Charles-François Natali | 2012-01-02 | 2 | -0/+4 | |
| | | | | | | | | Vilmos Nebehaj. | |||||
* | | Issue #11638: Adding test to ensure .tar.gz files can be generated by sdist ↵ | Jason R. Coombs | 2011-12-26 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | command with unicode metadata, based on David Barnett's patch. Issue #11638: Added tests to capture failures in make_tarball with various unicode strings. Following fix for Issue #13639, these tests now pass. | |||||
* | | Update News entry. | Senthil Kumaran | 2011-12-23 | 1 | -0/+2 | |
| | | ||||||
* | | Issue #13639: Accept unicode filenames in tarfile.open(mode="w|gz"). | Lars Gustäbel | 2011-12-21 | 1 | -0/+2 | |
| | | | | | | | | | | | | Passing a unicode filename to tarfile.open() along with mode "w|gz" failed with a UnicodeError because the filename was not encoded properly before being written to the gzipped stream in the FNAME extra field. | |||||
* | | Issue #1785: Fix inspect and pydoc with misbehaving descriptors. | Antoine Pitrou | 2011-12-21 | 1 | -0/+2 | |
| | | | | | | | | Also fixes issue #13581: `help(type)` wouldn't display anything. | |||||
* | | Issue #13628: python-gdb.py is now able to retrieve more frames in the Python | Victor Stinner | 2011-12-19 | 1 | -0/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | traceback if Python is optimized. * delay the lookup of the size_t type, it is not available at startup * The second argument of the PyFrameObjectPtr constructor is optional, as done in other constructors * iter_builtins() and iter_globals() methods of PyFrameObjectPtr returns an empty tuple instead of None if Python is optimized * Fix py-bt to handle correctly "optimized" frames * Frame.get_pyop() tries to get the frame pointer from PyEval_EvalCodeEx() if the pointer is optimized out in PyEval_EvalFrameEx() | |||||
* | | Issue #7502: Fix equality comparison for DocTestCase instances. | Antoine Pitrou | 2011-12-18 | 2 | -0/+4 | |
| | | | | | | | | Patch by Cédric Krier. | |||||
* | | Issue #11870: threading: Properly reinitialize threads internal locks and | Charles-François Natali | 2011-12-18 | 1 | -0/+3 | |
| | | | | | | | | condition variables to avoid deadlocks in child processes. | |||||
* | | Issue #8035: urllib: Fix a bug where the client could remain stuck after a | Charles-François Natali | 2011-12-18 | 1 | -0/+3 | |
| | | | | | | | | redirection or an error. | |||||
* | | Issue #13522: document error return values of some float and complex C API ↵ | Antoine Pitrou | 2011-12-18 | 1 | -0/+1 | |
| | | | | | | | | functions. | |||||
* | | Fix the fix for issue #12149: it was incorrect, although it had the side | Antoine Pitrou | 2011-12-15 | 1 | -0/+4 | |
| | | | | | | | | | | effect of appearing to resolve the issue. Thanks to Mark Shannon for noticing. | |||||
* | | Issue #4625: add NEWS entry. | Ned Deily | 2011-12-14 | 1 | -0/+4 | |
| | | ||||||
* | | Issue #13573: The csv.writer now uses the repr() for floats rather than str(). | Raymond Hettinger | 2011-12-12 | 1 | -0/+3 | |
| | | ||||||
* | | Issue #13546: Fixed an overflow issue that could crash the intepreter when | Amaury Forgeot d'Arc | 2011-12-07 | 1 | -0/+3 | |
| | | | | | | | | | | | | calling sys.setrecursionlimit((1<<31)-1). 2.7 only. | |||||
* | | Correctly detect bzip2 compressed streams with blocksizes other than 900k. | Lars Gustäbel | 2011-12-06 | 1 | -0/+3 | |
| | | ||||||
* | | Issue #13513: IOBase docs incorrectly link to the readline module | Meador Inge | 2011-12-03 | 1 | -0/+3 | |
| | | ||||||
* | | Issue #13439: Fix many errors in turtle docstrings. | Petri Lehtinen | 2011-12-02 | 1 | -0/+2 | |
| | | ||||||
* | | Issue #12856: Ensure child processes do not inherit the parent's random seed ↵ | Antoine Pitrou | 2011-11-25 | 1 | -0/+4 | |
| | | | | | | | | | | | | for filename generation in the tempfile module. Patch by Brian Harring. | |||||
* | | Issue #13458: Fix a memory leak in the ssl module when decoding a ↵ | Antoine Pitrou | 2011-11-23 | 1 | -0/+3 | |
| | | | | | | | | | | | | certificate with a subjectAltName. Patch by Robert Xiao. | |||||
* | | Issue #13415: os.unsetenv() doesn't ignore errors anymore. | Victor Stinner | 2011-11-22 | 1 | -0/+2 | |
| | | ||||||
* | | Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is | Antoine Pitrou | 2011-11-21 | 2 | -0/+7 | |
| | | | | | | | | | | | | | | raised when the wrapped raw file is non-blocking and the write would block. Previous code assumed that the raw write() would raise BlockingIOError, but RawIOBase.write() is defined to returned None when the call would block. Patch by sbt. | |||||
* | | #13358: HTMLParser now calls handle_data only once for each CDATA. | Ezio Melotti | 2011-11-18 | 1 | -0/+2 | |
| | | ||||||
* | | #4147: minidom's toprettyxml no longer adds whitespace around a text node ↵ | Ezio Melotti | 2011-11-18 | 1 | -0/+4 | |
| | | | | | | | | when it is the only child of an element. Initial patch by Dan Kenigsberg. | |||||
* | | Issue #8793: Prevent IDLE crash in 2.7 when given strings with | Ned Deily | 2011-11-16 | 1 | -0/+3 | |
| | | | | | | | | invalid hex escape sequences. | |||||
* | | Issue #13333: The UTF-7 decoder now accepts lone surrogates | Antoine Pitrou | 2011-11-15 | 1 | -0/+3 | |
| | | | | | | | | (the encoder already accepts them). | |||||
* | | #1745761, #755670, #13357, #12629, #1200313: improve attribute handling in ↵ | Ezio Melotti | 2011-11-14 | 1 | -0/+3 | |
| | | | | | | | | HTMLParser. | |||||
* | | Issue #13193: Fix distutils.filelist.FileList under Windows. The | Antoine Pitrou | 2011-11-12 | 1 | -0/+3 | |
| | | | | | | | | "recursive-include" directive now recognizes both legal path separators. | |||||
* | | Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely | Antoine Pitrou | 2011-11-09 | 2 | -0/+4 | |
| | | | | | | | | when called with a timeout. Patch by Arnaud Ysmal. | |||||
* | | Partial patch for issue #11812: Take care of test_telnetlib.py | Jesus Cea | 2011-11-08 | 1 | -0/+3 | |
| | | ||||||
* | | Solved a potential deadlock in test_telnetlib.py. Related to issue #11812 | Jesus Cea | 2011-11-08 | 1 | -0/+2 | |
| | | ||||||
* | | Revert "Accept None as start and stop parameters for list.index() and ↵ | Petri Lehtinen | 2011-11-06 | 1 | -3/+0 | |
| | | | | | | | | | | | | tuple.index()" Issue #13340. | |||||
* | | remove py3k warning for callable | Benjamin Peterson | 2011-11-06 | 1 | -0/+2 | |
| | | ||||||
* | | Accept None as start and stop parameters for list.index() and tuple.index() | Petri Lehtinen | 2011-11-05 | 1 | -0/+3 | |
| | | | | | | | | Closes #13340. | |||||
* | | Issue #3067: Enhance the documentation and docstring of locale.setlocale() | Petri Lehtinen | 2011-11-05 | 1 | -0/+3 | |
| | | ||||||
* | | Fix Maildir initialization so that maildir contents are read correctly. | Petri Lehtinen | 2011-11-05 | 1 | -0/+3 | |
| | | | | | | | | Closes #13254. |