Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #14809: Add HTTP status codes from RFC 6585 to http.server and http.client | Hynek Schlawack | 2012-05-16 | 2 | -0/+4 |
| | | | | Patch by EungJun Yi. | ||||
* | Issue #14777: merge | Ned Deily | 2012-05-16 | 1 | -0/+6 |
|\ | |||||
| * | Issue #14777: In an X11 windowing environment, tkinter may return | Ned Deily | 2012-05-16 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | undecoded UTF-8 bytes as a string when accessing the Tk clipboard. Modify clipboad_get() to first request type UTF8_STRING when no specific type is requested in an X11 windowing environment, falling back to the current default type STRING if that fails. Original patch by Thomas Kluyver. | ||||
* | | Issue #14624: UTF-16 decoding is now 3x to 4x faster on various inputs. | Antoine Pitrou | 2012-05-15 | 1 | -0/+3 |
| | | | | | | | | Patch by Serhiy Storchaka. | ||||
* | | Sort file list in test_os.WalkTests | Hynek Schlawack | 2012-05-15 | 1 | -2/+2 |
| | | | | | | | | | | Adding new files into the tree lead to buildbot fails as the order wasn't deterministic. | ||||
* | | merge heads | Senthil Kumaran | 2012-05-15 | 1 | -0/+2 |
|\ \ | |||||
| * | | #14773: Fix os.fwalk() failing on dangling symlinks | Hynek Schlawack | 2012-05-15 | 1 | -0/+2 |
| | | | |||||
* | | | merge from 3.2 - Issue #12541: Be lenient with quotes around Realm field of ↵ | Senthil Kumaran | 2012-05-15 | 1 | -0/+3 |
|\ \ \ | |/ / |/| / | |/ | HTTP Basic Authentation in urllib2. | ||||
| * | Issue #12541: Be lenient with quotes around Realm field of HTTP Basic ↵ | Senthil Kumaran | 2012-05-15 | 1 | -0/+3 |
| | | | | | | | | | | | | Authentation in urllib2. G: changed Misc/NEWS | ||||
| * | Issue #14245: Improve floating-point entry in FAQ. Thanks Zbyszek ↵ | Mark Dickinson | 2012-05-13 | 1 | -0/+1 |
| | | | | | | | | Jędrzejewski-Szmek for some of the wording. | ||||
| * | Issue #14662: Prevent shutil failures on OS X when destination does not | Ned Deily | 2012-05-11 | 1 | -0/+3 |
| | | | | | | | | support chflag operations. (Patch by Hynek Schlawack) | ||||
* | | #14807: move undocumented tarfile.filemode() to stat.filemode(). Add ↵ | Giampaolo Rodola' | 2012-05-15 | 1 | -1/+4 |
| | | | | | | | | tarfile.filemode alias with deprecation warning. | ||||
* | | Document f4d7ad6c9d6e. | Martin v. Löwis | 2012-05-15 | 1 | -0/+2 |
| | | |||||
* | | PEP 415: Implement suppression of __context__ display with an exception ↵ | Benjamin Peterson | 2012-05-15 | 1 | -0/+3 |
| | | | | | | | | | | | | attribute This replaces the original PEP 409 implementation. See #14133. | ||||
* | | Issue #13815: Resurrect the ExFileObject class. | Lars Gustäbel | 2012-05-14 | 1 | -2/+2 |
| | | | | | | | | | | | | After a discussion in the tracker, the decision was made to keep the ExFileObject class after all as a subclass of io.BufferedReader instead of removing it completely. | ||||
* | | Issue #14417: Mutating a dict during lookup now restarts the lookup instead ↵ | Antoine Pitrou | 2012-05-13 | 1 | -0/+3 |
| | | | | | | | | of raising a RuntimeError (undoes issue #14205). | ||||
* | | Issue #14532: Add a secure_compare() helper to the hmac module, to mitigate | Charles-François Natali | 2012-05-13 | 2 | -0/+4 |
| | | | | | | | | timing attacks. Patch by Jon Oberheide. | ||||
* | | Add importlib.util.resolve_name(). | Brett Cannon | 2012-05-13 | 1 | -0/+2 |
| | | |||||
* | | Issue #13959: Document imp.find_module/load_module as deprecated. | Brett Cannon | 2012-05-13 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | The code itself does not raise a DeprecationWarning as the functions are technically fine, it's just a bad API. Unfortunately experience has shown that the terrible API has been exposed in various places, necessitating that it stick around probably until py4k comes around since it is such a shift to move over to importlib.find_loader(). | ||||
* | | Fix #13210. Port the Windows build from VS2008 to VS2010. | Brian Curtin | 2012-05-13 | 1 | -0/+5 |
| | | |||||
* | | Issue #14366: Support lzma compression in zip files. | Martin v. Löwis | 2012-05-13 | 1 | -0/+3 |
| | | | | | | | | Patch by Serhiy Storchaka. | ||||
* | | Issue #13959: Introduce importlib.find_loader(). | Brett Cannon | 2012-05-12 | 1 | -0/+2 |
| | | | | | | | | | | | | The long-term goal is to deprecate imp.find_module() in favour of this API, but it will take some time as some APIs explicitly return/use what imp.find_module() returns. | ||||
* | | Issue #14082: shutil.copy2() now copies extended attributes, if possible. | Antoine Pitrou | 2012-05-12 | 1 | -0/+3 |
| | | | | | | | | Patch by Hynek Schlawack. | ||||
* | | Issue #13959: Have | Brett Cannon | 2012-05-11 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | importlib.abc.FileLoader.load_module()/get_filename() and importlib.machinery.ExtensionFileLoader.load_module() have their single argument be optional as the loader's constructor has all the ncessary information. This allows for the deprecation of imp.load_source()/load_compile()/load_package(). | ||||
* | | Issue #13959: Deprecate imp.get_suffixes() for new attributes on | Brett Cannon | 2012-05-11 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | importlib.machinery that provide the suffix details for import. The attributes were not put on imp so as to compartmentalize everything importlib needs for setting up imports in importlib.machinery. This also led to an indirect deprecation of inspect.getmoduleinfo() as it directly returned imp.get_suffix's returned tuple which no longer makes sense. | ||||
* | | Issue #14662: Prevent shutil failures on OS X when destination does not | Ned Deily | 2012-05-11 | 1 | -0/+3 |
| | | | | | | | | support chflag operations. (Patch by Hynek Schlawack) | ||||
* | | Issue #14157: Fix time.strptime failing without a year on February 29th. | Antoine Pitrou | 2012-05-10 | 1 | -0/+3 |
|\ \ | |/ | | | | | Patch by Hynek Schlawack. | ||||
| * | Issue #14157: Fix time.strptime failing without a year on February 29th. | Antoine Pitrou | 2012-05-10 | 1 | -0/+3 |
| | | | | | | | | Patch by Hynek Schlawack. | ||||
* | | Issue #14753: Make multiprocessing treat negative timeouts as it did in 3.2 | Richard Oudkerk | 2012-05-10 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | In Python 3.2 and earlier, Process.join() and Connection.poll() treated negative timeouts as zero timeouts. Earlier versions from the 3.3 line of development treat them as infinite timeouts. The patch reverts to the old behaviour. | ||||
* | | Issue #14738: Speed-up UTF-8 decoding on non-ASCII data. Patch by Serhiy ↵ | Antoine Pitrou | 2012-05-10 | 1 | -0/+3 |
| | | | | | | | | Storchaka. | ||||
* | | MERGE: Closes #14768: os.path.expanduser('~/a') doesn't works correctly when ↵ | Jesus Cea | 2012-05-10 | 2 | -0/+3 |
|\ \ | |/ | | | | | HOME is '/' | ||||
| * | Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME ↵ | Jesus Cea | 2012-05-10 | 2 | -0/+3 |
| | | | | | | | | is '/' | ||||
| * | Issue #14761: Fix potential leak on an error case in the import machinery. | Antoine Pitrou | 2012-05-09 | 2 | -0/+3 |
| | | |||||
* | | Issue #14583: Fix importlib bug when a package's __init__.py would first ↵ | Antoine Pitrou | 2012-05-07 | 1 | -0/+3 |
| | | | | | | | | import one of its modules then raise an error. | ||||
* | | Issue #14741: Merge fix from 3.2. | Mark Dickinson | 2012-05-07 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #14741: Fix missing support for ellipsis in parser module. | Mark Dickinson | 2012-05-07 | 1 | -0/+2 |
| | | |||||
* | | Issue #14697: Merge fix from 3.2. | Mark Dickinson | 2012-05-07 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #14697: Fix missing parser module support for set displays and set ↵ | Mark Dickinson | 2012-05-07 | 1 | -0/+3 |
| | | | | | | | | comprehensions. | ||||
* | | Issue #14701: Merge fix from 3.2. | Mark Dickinson | 2012-05-07 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #14701: Add missing support for 'raise ... from' in parser module. | Mark Dickinson | 2012-05-07 | 1 | -0/+2 |
| | | |||||
* | | Issue #14700: Fix two broken and undefined-behaviour-inducing overflow ↵ | Mark Dickinson | 2012-05-07 | 1 | -0/+3 |
| | | | | | | | | checks in old-style string formatting. Thanks Serhiy Storchaka for report and original patch. | ||||
* | | Add John Regehr to Misc/ACKS for his help with finding integer overflows ↵ | Mark Dickinson | 2012-05-07 | 1 | -0/+1 |
| | | | | | | | | (issue #9530). | ||||
* | | Merge Misc/NEWS issue number fix from 3.2 | Mark Dickinson | 2012-05-07 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fix issue number in Misc/NEWS. | Mark Dickinson | 2012-05-07 | 1 | -1/+1 |
| | | |||||
* | | Add Misc/NEWS entry for rev b4a1d9287780 | Richard Oudkerk | 2012-05-06 | 1 | -0/+3 |
| | | |||||
* | | Issue #14965: Bring Tools/parser/unparse.py up to date with the Python 3.3. ↵ | Mark Dickinson | 2012-05-06 | 1 | -0/+6 |
|\ \ | |/ | | | | | Grammar. | ||||
| * | Issue #14965: Fix missing support for starred assignments in ↵ | Mark Dickinson | 2012-05-06 | 1 | -0/+6 |
| | | | | | | | | Tools/parser/unparse.py. | ||||
* | | #14034: merge argparse tutorial from 3.2. | Ezio Melotti | 2012-05-06 | 1 | -0/+5 |
|\ \ | |/ | |||||
| * | #14034: added the argparse tutorial. Patch by Tshepang Lekhonkhobe. | Ezio Melotti | 2012-05-06 | 2 | -0/+6 |
| | | |||||
* | | Closes #13989: Add support for text modes to gzip.open(). | Nadeem Vawda | 2012-05-06 | 1 | -0/+2 |
| | | | | | | | | Also, add tests for gzip.open(). |