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

sort by:
Revision Author Date Message Commit Date
0e8ccb8 merge 30 April 2012, 03:24:04 UTC
b80e46e Issue #14687: Avoid an useless duplicated string in PyUnicode_Format() 30 April 2012, 03:21:52 UTC
aff3cc6 Issue #14687: Cleanup PyUnicode_Format() 30 April 2012, 03:19:21 UTC
b6b98c0 Track the cache size directly. 30 April 2012, 01:09:02 UTC
c204348 Write the What's New for the importlib stuff. 30 April 2012, 00:59:41 UTC
9a8ad0c Issue #14428: Remove test_process_time_threads() from test_time The test is unstable and it's not really interesting to test exactly how threads are handled. 29 April 2012, 23:39:57 UTC
5df72c2 Issue #14428: Make test_process_time_threads() less strict 29 April 2012, 22:51:31 UTC
934cb18 merged 29 April 2012, 22:20:05 UTC
b8f02b5 fixed test_imaplib failure on Win 29 April 2012, 22:16:46 UTC
a6df2ee merge 29 April 2012, 21:57:05 UTC
9f0ab9f Factor out shared variables. 29 April 2012, 21:55:27 UTC
5740489 Issue #14696: Merge from 3.2 29 April 2012, 21:20:01 UTC
407b3bd Issue #14696: Fix parser module to understand 'nonlocal' declarations. 29 April 2012, 21:18:31 UTC
53c6651 merge 29 April 2012, 20:34:43 UTC
5a38f80 Issue #10941: Fix imaplib.Internaldate2tuple to produce correct result near the DST transition. Patch by Joe Peterson. 29 April 2012, 20:12:27 UTC
2420d83 Issue #10941: Fix imaplib.Internaldate2tuple to produce correct result near the DST transition. Patch by Joe Peterson. 29 April 2012, 19:56:49 UTC
678e7f3 Flatten the lru cache keyword args tuple for better memory utilization. 29 April 2012, 19:28:02 UTC
1182351 Re-indent. 29 April 2012, 18:40:43 UTC
6818832 merge 29 April 2012, 18:38:57 UTC
62228db Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py. Thanks to Eric Snow for the patch. 29 April 2012, 18:38:11 UTC
89c4eef Issue #14691: indent the traceback so the example is highlighted 29 April 2012, 18:33:28 UTC
89e6d38 Remove untests for non-existent functionality. 29 April 2012, 18:17:05 UTC
1fc3ec9 Issue #14428: Rewrite test_process_time_threads() test time.process_time() is CPU time, not a number of seconds. 29 April 2012, 17:46:19 UTC
b63fd2a Issue #9154: Merge fix from 3.2. 29 April 2012, 17:35:56 UTC
ea7e9f9 Issue #9154: Fix parser module to understand function annotations. 29 April 2012, 17:34:40 UTC
119d026 merge 29 April 2012, 16:50:32 UTC
acf85cd Issue #13959: Re-implement imp.NullImporter in Lib/imp.py. 29 April 2012, 16:50:03 UTC
b77b5c3 merge 29 April 2012, 16:35:39 UTC
99a5638 Issue 14688: Fix typo 29 April 2012, 16:32:30 UTC
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
back to top