Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
e383e82 Issue #14521: Make result of float('nan') and float('-nan') more consistent across platforms. Further, don't rely on Py_HUGE_VAL for float('inf'). 29 April 2012, 14:31:56 UTC
d68ac85 #14236: merge with 3.2. 29 April 2012, 10:37:13 UTC
3899283 #14236: fix docs for \S. 29 April 2012, 10:35:55 UTC
5fe0f4e #14519: merge with 3.2. 29 April 2012, 08:48:54 UTC
a0b1d1e #14519: fix the regex used in the scanf example. 29 April 2012, 08:47:28 UTC
ec5cf09 Better control when dumping import state 29 April 2012, 07:58:24 UTC
5fbd37e Merge markup fix in unittest doc from 3.2. 29 April 2012, 07:53:31 UTC
b8e336b Fix markup in unittest doc. 29 April 2012, 07:52:18 UTC
4ca008b issue6085 - update docs in default branch 29 April 2012, 05:44:14 UTC
db727b4 Fix issue6085 - Remove the delay caused by fqdn lookup while logging in BaseHTTPRequestHandler 29 April 2012, 05:41:03 UTC
660a949 #14236: merge with 3.2. 29 April 2012, 05:24:02 UTC
e990092 #14236: mention Unicode whitespace in \s documentation. 29 April 2012, 05:23:25 UTC
1aacba4 Fix Issue6085 - SimpleHTTPServer address_string to return client ip instead of client hostname 29 April 2012, 04:51:54 UTC
0ce1649 #14461: merge with 3.2. 29 April 2012, 04:35:22 UTC
0a6b541 #14461: fix wording. 29 April 2012, 04:34:46 UTC
4b7698c issue14427 - Document Request.get_header and Request.header_items 29 April 2012, 03:51:56 UTC
8dc5004 issue14427 - Document Request.get_header and Request.header_items 29 April 2012, 03:50:39 UTC
150c365 httplib - minor update to check empty response 29 April 2012, 02:40:23 UTC
7e70a5c httplib - minor update to check empty response 29 April 2012, 02:39:49 UTC
889ad16 httplib test for early eof response. related to Issue13684 29 April 2012, 02:21:26 UTC
9c29f86 httplib test for early eof response. related to Issue13684 29 April 2012, 02:20:46 UTC
e240947 #14155: merge note about \b from 3.2. 29 April 2012, 01:53:20 UTC
285e51b #14155: add a note about \b. 29 April 2012, 01:52:30 UTC
fe98e2f Issue #14428: Use the new time.perf_counter() and time.process_time() functions * Replace "time.clock on windows, or time.time" with time.perf_counter() * profile module: only use time.process_time() instead of trying different functions providing the process time * timeit module: use time.perf_counter() by default, time.time() and time.clock() can still be used using --time and --clock options * pybench program: use time.perf_counter() by default, add support for the new time.process_time() and time.perf_counter() functions, but stay backward compatible. Use also time.get_clock_info() to display information of the timer. 29 April 2012, 01:01:20 UTC
47620a6 Close #14309: Deprecate time.clock() Use time.perf_counter() or time.process_time() instead. 29 April 2012, 00:52:39 UTC
ec89539 Issue #14428, #14397: Implement the PEP 418 * 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 29 April 2012, 00:41:27 UTC
ca6e40f Time doc: documentation that the CLOCK_* constants and clock_*() functions are not always available. 28 April 2012, 21:47:33 UTC
4aff7ed Issue #14448: merge with 3.2 28 April 2012, 09:19:59 UTC
100b889 Issue #14448: add reference to IANA timezone database; thanks to Georg/Nick suggestions 28 April 2012, 09:19:37 UTC
b11d91d Fix my previous commit: bool is a long, restore the specical case for bool 27 April 2012, 22:25:34 UTC
92ff4e1 Issue #14666: stop multiprocessing's resource-sharing thread after the tests are done. Also, block delivery of signals to that thread. Patch by Richard Oudkerk. This will hopefully fix sporadic freezes on the FreeBSD 9.0 buildbot. 27 April 2012, 21:51:03 UTC
d0880d5 Simplify and optimize formatlong() * Remove _PyBytes_FormatLong(): inline it into formatlong() * the input type is always a long, so remove the code for bool * don't duplicate the string if the length does not change * Use PyUnicode_DATA() instead of _PyUnicode_AsString() 27 April 2012, 21:40:13 UTC
19b409a merge 27 April 2012, 21:27:33 UTC
efad00d Issue #14646: __import__() now sets __loader__ if need be. 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. 27 April 2012, 21:27:14 UTC
94d558b Optimize _PyUnicode_FindMaxChar() find pure ASCII strings 27 April 2012, 20:26:58 UTC
fea73ef Issue #14605: Don't error out if get_importer() returns None. 27 April 2012, 19:45:15 UTC
6d3b321 merge 27 April 2012, 19:31:45 UTC
aa93642 Issue #14605: Use None in sys.path_importer_cache to represent no finder instead of using some (now non-existent) implicit finder. 27 April 2012, 19:30:58 UTC
64acccf decref cached keys on type deallocation (#13903) 27 April 2012, 19:07:36 UTC
9e66ac6 merge 27 April 2012, 18:02:33 UTC
ce418b4 Issue #14605: Stop having implicit entries for sys.meta_path. ImportWarning is raised if sys.meta_path is found to be empty. 27 April 2012, 18:01:58 UTC
3c6ea1c Issue #14605: Insert to the front of sys.meta_path, don't append. 27 April 2012, 17:52:55 UTC
c8287ef Invalidate finder caches after creating a new script. 27 April 2012, 17:52:03 UTC
0e1a5b4 use wfile api 27 April 2012, 15:56:30 UTC
cfc1cc2 Issue #14642: Add "hg touch" extension, and "make touch" target. 27 April 2012, 14:10:21 UTC
8f82506 Check newly created consistency using _PyUnicode_CheckConsistency(str, 1) * In debug mode, fill the string data with invalid characters * Simplify also reference counting in PyCodec_BackslashReplaceErrors() and PyCodec_XMLCharRefReplaceError() 27 April 2012, 11:55:39 UTC
990eff0 Backing out 86dc014cdd74. Not ready yet 26 April 2012, 15:05:31 UTC
2b47f0a Close #10142: Support for SEEK_HOLE/SEEK_DATA 26 April 2012, 14:39:35 UTC
790a9b4 Add a missing close paren 26 April 2012, 04:38:05 UTC
9fa47eb merge heads 26 April 2012, 04:27:06 UTC
1138944 only incref when using borrowing functions 26 April 2012, 04:26:37 UTC
e0d88a1 Issue #14605: Make explicit the entries on sys.path_hooks that used to 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. 26 April 2012, 00:54:04 UTC
8f79dd5 Silence DeprecationWarning for cgi.escape() usage in test_cgi. 26 April 2012, 00:49:19 UTC
f96bb2f Update importlib.h 26 April 2012, 00:18:55 UTC
5a5d6a1 Merge 26 April 2012, 00:18:24 UTC
718fbf0 _PyUnicode_CheckConsistency() ensures that the unicode string ends with a null character 25 April 2012, 22:39:37 UTC
3065093 long_to_decimal_string() and _PyLong_Format() check the consistency of newly created strings using _PyUnicode_CheckConsistency() in debug mode 25 April 2012, 22:37:21 UTC
aed9773 Issue #14605 and #14642: Issue a warning in case Python\importlib.h needs to be rebuilt, but there's no Python interpreter around to freeze the bootstrap script. Forgot to include Makefile.pre.in in changeset 76549:acfdf46b8de1. 25 April 2012, 17:45:11 UTC
ae77584 Fix #3561. Add an option to place the Python installation into the Windows Path environment variable. 25 April 2012, 13:12:37 UTC
f99983d Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class that doesn't inherit from TestCase (i.e. a mixin). 25 April 2012, 12:58:17 UTC
b05ac86 Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class that doesn't inherit from TestCase (i.e. a mixin). 25 April 2012, 12:56:46 UTC
d0bb6aa Start a shared utility script for poking around at the import internals 25 April 2012, 12:17:54 UTC
c94871a Merged fixed test from 3.2. 25 April 2012, 09:51:35 UTC
c2ad0aa Fixed test to work on Windows. 25 April 2012, 09:47:00 UTC
7541c8e Issue #14605 and #14642: Issue a warning in case Python\importlib.h needs to be rebuilt, but there's no Python interpreter around to freeze the bootstrap script. 25 April 2012, 08:54:48 UTC
8923a4d Issue #14605: Insert to the front of sys.path_hooks instead of appending. 25 April 2012, 02:03:46 UTC
4fe29c9 Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader. This time also recreating the Python/importlib.h file to make make happy. See the ticket for details. 25 April 2012, 00:31:37 UTC
ac8805a Issue #14605: Revert renaming of _SourcelessFileLoader, since it caused the buildbots to fail. 25 April 2012, 00:11:07 UTC
2945e78 Issue #14605: Rename _SourcelessFileLoader to SourcelessFileLoader 24 April 2012, 23:36:48 UTC
a5798de Issue #14632: Updated WatchedFileHandler to deal with race condition. Thanks to John Mulligan for the problem report and patch. 24 April 2012, 22:33:33 UTC
66b8b08 Issue #14632: Updated WatchedFileHandler to deal with race condition. Thanks to John Mulligan for the problem report and patch. 24 April 2012, 22:25:30 UTC
5438ed1 Issue #4892: multiprocessing Connections can now be transferred over multiprocessing Connections. Patch by Richard Oudkerk (sbt). 24 April 2012, 20:56:57 UTC
9f478c0 Merge with 3.2: Issue #14160: TarFile.extractfile() failed to resolve symbolic links when the links were not located in an archive subdirectory. 24 April 2012, 19:09:17 UTC
1ef9eda Issue #14160: TarFile.extractfile() failed to resolve symbolic links when the links were not located in an archive subdirectory. 24 April 2012, 19:04:40 UTC
1d642d2 Closes Issue #14661: posix module: add O_EXEC, O_SEARCH, O_TTY_INIT (I add some Solaris constants too) 24 April 2012, 18:59:17 UTC
cf38120 Issue #14661: posix module: add O_EXEC, O_SEARCH, O_TTY_INIT 24 April 2012, 18:44:40 UTC
15ee821 distiguish between refusing to creating shared keys and error (#13903) 24 April 2012, 18:44:18 UTC
17feca0 Issue #14448: merge with 3.2 24 April 2012, 17:46:29 UTC
d11d0d6 Issue #14448: mention pytz; patch by Andrew Svetlov 24 April 2012, 17:46:06 UTC
f409583 Fix location of versionaddeds and empty lines. 24 April 2012, 17:16:24 UTC
4f2f3b6 Account for shared keys in type's __sizeof__ (#13903). 24 April 2012, 17:13:57 UTC
f0c10f0 Issue #14554: merge with 3.2 24 April 2012, 16:39:53 UTC
3e29d93 Issue #14554: correct example for captured_stdout(); patch by Tshepang Lekhonkhobe 24 April 2012, 16:39:24 UTC
d57c73b Issue #13478: merge with 3.2 24 April 2012, 16:12:13 UTC
e6c3462 Issue #13478: document timeit.default_timer() 24 April 2012, 16:11:46 UTC
011c9aa Issue #13587: merge with 3.2 24 April 2012, 15:37:02 UTC
08ccbf4 Issue #13587: use the right RFC2617 name for WWW-Authenticate; patch by Aaron Maenpaa 24 April 2012, 15:36:41 UTC
42f5881 merge 3.2 (#14658) 24 April 2012, 15:09:20 UTC
7b16687 don't use a slot wrapper from a different special method (closes #14658) 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. 24 April 2012, 15:06:25 UTC
7ce67e4 fix dict gc tracking (#13903) 24 April 2012, 14:32:57 UTC
01296da Skip long repr tests when the cached pyc file's path length would exceed the maximum Win32 path length. This should fix a failure on one of the XP buildbots. 24 April 2012, 11:55:35 UTC
b9f4c9d make pointer arith c89 24 April 2012, 01:45:40 UTC
f3b7d86 use correct base ptr 23 April 2012, 22:07:01 UTC
2844a7a simplify and reformat 23 April 2012, 22:00:25 UTC
ece58de Close #14648: Compute correctly maxchar in str.format() for substrin 23 April 2012, 21:36:38 UTC
0b7d7c9 Merge #14640: Fix typos/syntax in pyporting.rst. Patch by Dionysios Kalofonos. 23 April 2012, 18:45:45 UTC
790e005 #14640: Fix typos/syntax in pyporting.rst. Patch by Dionysios Kalofonos. 23 April 2012, 18:44:00 UTC
f8ae4fa Issue #14650: fix typo in shutil.disk_usage() docstring; patch by Hobson Lane 23 April 2012, 18:07:15 UTC
9bc3653 merge heads 23 April 2012, 17:50:05 UTC
8c52ab5 Issue #14641: merge with 3.2 23 April 2012, 17:45:45 UTC
back to top