summaryrefslogtreecommitdiff
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #10941: Fix imaplib.Internaldate2tuple to produce correct result nearAlexander Belopolsky2012-04-292-0/+4
|\ | | | | | | the DST transition. Patch by Joe Peterson.
| * Issue #10941: Fix imaplib.Internaldate2tuple to produce correct result nearAlexander Belopolsky2012-04-292-0/+4
| | | | | | | | the DST transition. Patch by Joe Peterson.
* | Issue #9154: Merge fix from 3.2.Mark Dickinson2012-04-291-0/+2
|\ \ | |/
| * Issue #9154: Fix parser module to understand function annotations.Mark Dickinson2012-04-291-0/+2
| |
* | Issue #14521: Make result of float('nan') and float('-nan') more consistent ↵Mark Dickinson2012-04-291-0/+3
| | | | | | | | across platforms. Further, don't rely on Py_HUGE_VAL for float('inf').
* | Fix Issue6085 - SimpleHTTPServer address_string to return client ip instead ↵Senthil Kumaran2012-04-291-0/+3
| | | | | | | | of client hostname
* | Close #14309: Deprecate time.clock()Victor Stinner2012-04-291-0/+3
| | | | | | | | Use time.perf_counter() or time.process_time() instead.
* | Issue #14428, #14397: Implement the PEP 418Victor Stinner2012-04-291-0/+4
| | | | | | | | | | | | | | | | | | * Rename time.steady() to time.monotonic() * On Windows, time.monotonic() uses GetTickCount/GetTickCount64() instead of QueryPerformanceCounter() * time.monotonic() uses CLOCK_HIGHRES if available * Add time.get_clock_info(), time.perf_counter() and time.process_time() functions
* | Issue #14646: __import__() now sets __loader__ if need be.Brett Cannon2012-04-271-0/+5
| | | | | | | | | | | | importlib.util.module_for_loader also will set __loader__ along with __package__. This is in conjunction to a forthcoming update to PEP 302 which will make these two attributes required for loaders to set.
* | Issue #14605: Use None in sys.path_importer_cache to represent noBrett Cannon2012-04-271-3/+3
| | | | | | | | finder instead of using some (now non-existent) implicit finder.
* | Issue #14605: Stop having implicit entries for sys.meta_path.Brett Cannon2012-04-271-0/+3
| | | | | | | | ImportWarning is raised if sys.meta_path is found to be empty.
* | Issue #14642: Add "hg touch" extension, and "make touch" target.Martin v. Loewis2012-04-271-0/+6
| |
* | Backing out 86dc014cdd74. Not ready yetJesus Cea2012-04-261-2/+0
| |
* | Close #10142: Support for SEEK_HOLE/SEEK_DATAJesus Cea2012-04-261-0/+2
| |
* | Issue #14605: Make explicit the entries on sys.path_hooks that used toBrett Cannon2012-04-251-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | be implicit. Added a warning for when sys.path_hooks is found to be empty. Also changed the meaning of None in sys.path_importer_cache to represent trying sys.path_hooks again (an interpretation of previous semantics). Also added a warning for when None was found. The long-term goal is for None in sys.path_importer_cache to represent the same as imp.NullImporter: no finder found for that sys.path entry.
* | Fix #3561. Add an option to place the Python installation into the Windows ↵Brian Curtin2012-04-251-0/+3
| | | | | | | | Path environment variable.
* | Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test ↵Antoine Pitrou2012-04-251-0/+3
|\ \ | |/ | | | | class that doesn't inherit from TestCase (i.e. a mixin).
| * Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test ↵Antoine Pitrou2012-04-251-0/+3
| | | | | | | | class that doesn't inherit from TestCase (i.e. a mixin).
* | Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader.Marc-Andre Lemburg2012-04-251-1/+1
| | | | | | | | | | This time also recreating the Python/importlib.h file to make make happy. See the ticket for details.
* | Issue #14605: Revert renaming of _SourcelessFileLoader, since it causedMarc-Andre Lemburg2012-04-251-1/+1
| | | | | | | | the buildbots to fail.
* | Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoaderMarc-Andre Lemburg2012-04-251-1/+1
| |
* | Issue #4892: multiprocessing Connections can now be transferred over ↵Antoine Pitrou2012-04-241-0/+3
| | | | | | | | | | | | multiprocessing Connections. Patch by Richard Oudkerk (sbt).
* | Merge with 3.2: Issue #14160: TarFile.extractfile() failed to resolve symbolicLars Gustäbel2012-04-241-0/+3
|\ \ | |/ | | | | links when the links were not located in an archive subdirectory.
| * Issue #14160: TarFile.extractfile() failed to resolve symbolic linksLars Gustäbel2012-04-241-0/+3
| | | | | | | | when the links were not located in an archive subdirectory.
* | merge 3.2 (#14658)Benjamin Peterson2012-04-241-0/+6
|\ \ | |/
| * don't use a slot wrapper from a different special method (closes #14658)Benjamin Peterson2012-04-241-0/+6
| | | | | | | | | | | | | | This also alters the fix to #11603. Specifically, setting __repr__ to object.__str__ now raises a recursion RuntimeError when str() or repr() is called instead of silently bypassing the recursion. I believe this behavior is more correct.
* | merge #14638: pydoc now treats non-str __name__ as None instead of raisingR David Murray2012-04-231-0/+3
|\ \ | |/ | | | | Original patch by Peter Otten.
| * #14638: pydoc now treats non-str __name__ as None instead of raisingR David Murray2012-04-231-0/+3
| | | | | | | | Original patch by Peter Otten.
* | news for issue13684Senthil Kumaran2012-04-231-0/+3
|\ \ | |/
| * news for issue13684Senthil Kumaran2012-04-231-0/+3
| |
* | merge 3.2Benjamin Peterson2012-04-231-0/+1
|\ \ | |/
| * add Mark ShannonBenjamin Peterson2012-04-231-0/+1
| |
* | Implement PEP 412: Key-sharing dictionaries (closes #13903)Benjamin Peterson2012-04-231-0/+4
| | | | | | | | Patch from Mark Shannon.
* | Issue #14605: Expose importlib.abc.FileLoader andBrett Cannon2012-04-221-0/+3
| | | | | | | | | | | | | | | | importlib.machinery.(FileFinder, SourceFileLoader, _SourcelessFileLoader, ExtensionFileLoader). This exposes all of importlib's mechanisms that will become public on the sys module.
* | Resolve #14026 (Merge from 3.2)Nick Coghlan2012-04-221-0/+3
|\ \ | |/
| * Close issue #14026 by better testing sys.argv handling in ↵Nick Coghlan2012-04-221-0/+3
| | | | | | | | test_cmd_line_script (patch by Jason Yeo)
* | Mention the backwards-incompatible change to ↵Brett Cannon2012-04-221-0/+5
| | | | | | | | imp.cache_from_source()/source_from_cache().
* | Fix Issue2193 - Allow ":" character in Cookie NAME valuesSenthil Kumaran2012-04-221-0/+2
| |
* | Issue #14630: Merge fix from 3.2.Mark Dickinson2012-04-201-0/+3
|\ \ | |/
| * Issue #14630: Fix an incorrect access of ob_digit[0] for a zero instance of ↵Mark Dickinson2012-04-201-0/+3
| | | | | | | | an int subclass.
* | Issue #14339: Improve speed of bin, oct and hex builtins. Patch by Serhiy ↵Mark Dickinson2012-04-201-0/+3
| | | | | | | | Storchaka (with minor modifications).
* | Issue #14629: Mention the filename in SyntaxError exceptions fromBrett Cannon2012-04-201-0/+3
| | | | | | | | tokenizer.detect_encoding() (when available).
* | merge 3.2: issue 14629Martin v. Löwis2012-04-201-0/+3
|\ \ | |/
| * Issue #14629: Raise SyntaxError in tokenizer.detect_encodingMartin v. Löwis2012-04-201-0/+3
| | | | | | | | if the first two lines have non-UTF-8 characters without an encoding declaration.
* | Issue #14308: Fix an exception when a dummy thread is in the threading ↵Antoine Pitrou2012-04-201-0/+3
|\ \ | |/ | | | | module's active list after a fork().
| * Issue #14308: Fix an exception when a "dummy" thread is in the threading ↵Antoine Pitrou2012-04-191-0/+3
| | | | | | | | module's active list after a fork().
* | Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo.Martin v. Löwis2012-04-191-0/+3
| | | | | | | | Patch by Stefan Behnel.
* | Merge from 3.2Nick Coghlan2012-04-192-0/+4
|\ \ | |/
| * Close #14032: fix incorrect variable reference in test_cmd_line_scriptNick Coghlan2012-04-192-0/+4
| |
* | #14538: merge with 3.2.Ezio Melotti2012-04-181-0/+3
|\ \ | |/