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

sort by:
Revision Author Date Message Commit Date
134708a Merged revisions 69974 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69974 | mark.dickinson | 2009-02-25 20:29:50 +0000 (Wed, 25 Feb 2009) | 3 lines Replace long with twodigits, to avoid depending on sizeof(digit) < sizeof(long) ........ 25 February 2009, 20:33:49 UTC
9de7ec7 http://bugs.python.org/issue4715 This patch by Antoine Pitrou optimizes the bytecode for conditional branches by merging the following "POP_TOP" instruction into the conditional jump. For example, the list comprehension "[x for x in l if not x]" produced the following bytecode: 1 0 BUILD_LIST 0 3 LOAD_FAST 0 (.0) >> 6 FOR_ITER 23 (to 32) 9 STORE_FAST 1 (x) 12 LOAD_FAST 1 (x) 15 JUMP_IF_TRUE 10 (to 28) 18 POP_TOP 19 LOAD_FAST 1 (x) 22 LIST_APPEND 2 25 JUMP_ABSOLUTE 6 >> 28 POP_TOP 29 JUMP_ABSOLUTE 6 >> 32 RETURN_VALUE but after the patch it produces the following bytecode: 1 0 BUILD_LIST 0 3 LOAD_FAST 0 (.0) >> 6 FOR_ITER 18 (to 27) 9 STORE_FAST 1 (x) 12 LOAD_FAST 1 (x) 15 POP_JUMP_IF_TRUE 6 18 LOAD_FAST 1 (x) 21 LIST_APPEND 2 24 JUMP_ABSOLUTE 6 >> 27 RETURN_VALUE Notice that not only the code is shorter, but the conditional jump (POP_JUMP_IF_TRUE) jumps right to the start of the loop instead of going through the JUMP_ABSOLUTE at the end. "continue" statements are helped similarly. Furthermore, the old jump opcodes (JUMP_IF_FALSE, JUMP_IF_TRUE) have been replaced by two new opcodes: - JUMP_IF_TRUE_OR_POP, which jumps if true and pops otherwise - JUMP_IF_FALSE_OR_POP, which jumps if false and pops otherwise 25 February 2009, 02:25:04 UTC
0a68b01 More markup and spelling fixes. 25 February 2009, 00:58:47 UTC
79d0434 Tweak markup, grammar, and punctuation. 25 February 2009, 00:32:51 UTC
95f285c Revert unintended part of r69948. Pydoc was not supposed to change. 24 February 2009, 23:41:47 UTC
4d9a823 Refine docs for super() noting that sibling classes can be called, not just parents. Add a comparison to getattr() which has the same search order but also includes the type itself. 24 February 2009, 23:30:43 UTC
886687d Use ABCs to validate documented restriction to Sets or Sequences. 24 February 2009, 11:27:15 UTC
9aa53c2 range() should have been registered as a Sequence. Needs to be backported to 2.6, 2.7, and 3.0. 24 February 2009, 11:25:35 UTC
afd3045 Fix-up random docs. Jumpahead was removed long ago. Other minor corrections. 24 February 2009, 10:57:02 UTC
29c0c7c Blocked revisions 69870-69871,69908 via svnmerge ........ r69870 | antoine.pitrou | 2009-02-22 11:25:52 -0600 (Sun, 22 Feb 2009) | 3 lines Try to make sense of the test_site buildbot failures ........ r69871 | antoine.pitrou | 2009-02-22 12:20:46 -0600 (Sun, 22 Feb 2009) | 3 lines Revert debugging statements, culprit is possibly test_distutils (see #5316) ........ r69908 | raymond.hettinger | 2009-02-23 13:32:55 -0600 (Mon, 23 Feb 2009) | 1 line Update itertools recipes to use next(). ........ 24 February 2009, 03:16:28 UTC
21315ba Update itertools recipes to use next(). 23 February 2009, 19:38:09 UTC
6d327b0 Merged revisions 69902 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69902 | tarek.ziade | 2009-02-23 13:41:29 +0100 (Mon, 23 Feb 2009) | 1 line more test coverage ........ 23 February 2009, 12:47:55 UTC
4f69a12 Blocked revisions 69896 via svnmerge ........ r69896 | georg.brandl | 2009-02-23 11:24:23 +0100 (Mo, 23 Feb 2009) | 1 line #5348: format() converts all kinds of values. ........ 23 February 2009, 10:25:20 UTC
5579ba9 #5348: format() converts all kinds of values. 23 February 2009, 10:24:05 UTC
9249f80 .pythonrc.py is no more 23 February 2009, 03:38:43 UTC
906785c Merged revisions 69889 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69889 | matthias.klose | 2009-02-23 00:14:26 +0100 (Mo, 23 Feb 2009) | 2 lines - Link the shared python library with $(MODLIBS). ........ 22 February 2009, 23:18:38 UTC
929a723 Merged revisions 69881 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69881 | tarek.ziade | 2009-02-22 21:15:41 +0100 (Sun, 22 Feb 2009) | 1 line Removing unused __main__ sections ........ 22 February 2009, 20:20:59 UTC
ea1a7d1 Blocked revisions 69878 via svnmerge ........ r69878 | tarek.ziade | 2009-02-22 21:11:46 +0100 (Sun, 22 Feb 2009) | 1 line removing map and lambda usage, so the test is similar to py3k's branch one ........ 22 February 2009, 20:14:01 UTC
5e25f9f Merged revisions 69874 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69874 | tarek.ziade | 2009-02-22 20:58:12 +0100 (Sun, 22 Feb 2009) | 1 line moved distutils.text_file tests into a real unittest class ........ 22 February 2009, 20:05:16 UTC
131733a - Modules/Setup.dist: Mention _heapq 22 February 2009, 12:57:58 UTC
c1a2657 Merged revisions 69861 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69861 | tarek.ziade | 2009-02-22 01:07:45 +0100 (Sun, 22 Feb 2009) | 1 line using versionchanged instead of versionadded for distutils doc on sdist default files ........ 22 February 2009, 00:10:58 UTC
ba86fa9 In Py3.x, a list comprehension is now faster than list(map(itemgetter(0), iterable)). 21 February 2009, 23:20:57 UTC
912fbca Merged revisions 69855 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69855 | benjamin.peterson | 2009-02-21 17:09:33 -0600 (Sat, 21 Feb 2009) | 1 line fix compiler warnings ........ 21 February 2009, 23:14:55 UTC
94aaf9e Relocate source_mtime in importlib to PyPycLoader. 21 February 2009, 23:12:24 UTC
aa9d5de Blocked revisions 69837-69838 via svnmerge ........ r69837 | raymond.hettinger | 2009-02-21 01:17:22 -0600 (Sat, 21 Feb 2009) | 4 lines Fix keyword arguments for itertools.count(). Step arg without a start arg was ignored. ........ r69838 | raymond.hettinger | 2009-02-21 02:58:42 -0600 (Sat, 21 Feb 2009) | 1 line Speedup and simplify negative counter using count's new step argument. ........ 21 February 2009, 22:39:38 UTC
eb13fdd Port r69837: Fix keyword arguments for itertools.count(). Step arg without a start arg was ignored. 21 February 2009, 22:30:12 UTC
bd171bc Port r69838: Speedup and simplify negative counter using count's new step argument. 21 February 2009, 22:10:18 UTC
934896d Merged revisions 69846 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69846 | mark.dickinson | 2009-02-21 20:27:01 +0000 (Sat, 21 Feb 2009) | 2 lines Issue #5341: Fix a variety of spelling errors. ........ 21 February 2009, 20:59:32 UTC
91cf882 Refactor source and bytecode file loaders in importlib so that there are source-only and source/bytecode loaders. 21 February 2009, 05:41:15 UTC
0515619 Tweak the source/bytecode loader from importlib to use more of the PEP 302 protocol API. 21 February 2009, 03:53:06 UTC
4afab6b Separate out finder for source and source/bytecode. 21 February 2009, 03:31:35 UTC
2dee597 Do some cleanup in importlib: + Ditch using arguments to super(). + Ditch subclassing from object directly. + Move directory check out of chaining path hook to file path hook/finder. + Rename some classes to better reflect they are finders, not importers. 21 February 2009, 03:15:37 UTC
a2fcb1d Add some notes about importlib and some API exposure cleanup. 21 February 2009, 03:12:17 UTC
22db67e Minor NOTES changes for importlib. 21 February 2009, 02:51:12 UTC
f8798f5 More typos in Lib/turtle.py 20 February 2009, 20:53:56 UTC
0fc61cc Merged revisions 69816 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69816 | mark.dickinson | 2009-02-20 20:42:53 +0000 (Fri, 20 Feb 2009) | 2 lines Issue #5295: Typos in turtle.py ........ 20 February 2009, 20:50:21 UTC
5e5c0db Merged revisions 69806 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69806 | eric.smith | 2009-02-20 09:02:36 -0500 (Fri, 20 Feb 2009) | 1 line Issue #5247: Improve error message when unknown format codes are used when using str.format() with str, int, and float arguments. ........ 20 February 2009, 14:25:03 UTC
247a9b8 Merged revisions 69415,69591,69593 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69415 | benjamin.peterson | 2009-02-07 13:08:22 -0600 (Sat, 07 Feb 2009) | 1 line make destinsrc private ........ r69591 | martin.v.loewis | 2009-02-13 14:26:16 -0600 (Fri, 13 Feb 2009) | 1 line Update Tix build procedure. ........ r69593 | martin.v.loewis | 2009-02-13 14:51:48 -0600 (Fri, 13 Feb 2009) | 1 line Add optional code signing after merging. ........ 20 February 2009, 04:09:19 UTC
ba01dd9 Merged revisions 69769,69776 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69769 | georg.brandl | 2009-02-19 02:30:06 -0600 (Thu, 19 Feb 2009) | 1 line #5310, #3558: fix operator precedence table. ........ r69776 | georg.brandl | 2009-02-19 10:34:51 -0600 (Thu, 19 Feb 2009) | 2 lines #5317: update IronPython URL. ........ 20 February 2009, 04:02:38 UTC
93d83da Blocked revisions 69268,69516,69757,69761,69765,69770,69772,69777,69795 via svnmerge ........ r69268 | kristjan.jonsson | 2009-02-04 04:05:25 -0600 (Wed, 04 Feb 2009) | 1 line issue 4804: Provide checks for the format string of strftime, and for the "mode" string of fopen on Windows. These strings are user provided from python and so we can avoid invoking the C runtime invalid parameter handler by first checking that they are valid. ........ r69516 | hirokazu.yamamoto | 2009-02-10 22:13:06 -0600 (Tue, 10 Feb 2009) | 2 lines Issue #5204: Define _PyVerify_fd on VC6 to make test_fdopen (test_os.py) pass. ........ r69757 | raymond.hettinger | 2009-02-18 23:34:35 -0600 (Wed, 18 Feb 2009) | 1 line Add some cross-references to the docs. Simplify the python code equivalent for izip(). Supply an optional argument for the nth() recipe. ........ r69761 | raymond.hettinger | 2009-02-18 23:51:41 -0600 (Wed, 18 Feb 2009) | 1 line Add an example for math.fsum() and elaborate on the accurary note. ........ r69765 | raymond.hettinger | 2009-02-19 00:55:03 -0600 (Thu, 19 Feb 2009) | 1 line Add links to helpful external resources. ........ r69770 | raymond.hettinger | 2009-02-19 03:50:24 -0600 (Thu, 19 Feb 2009) | 1 line Inline coefficients in gamma(). Add reflection formula. Add comments. ........ r69772 | vinay.sajip | 2009-02-19 06:31:32 -0600 (Thu, 19 Feb 2009) | 1 line #5287: Add exception handling around findCaller() call to help out IronPython. ........ r69777 | jeroen.ruigrok | 2009-02-19 12:52:21 -0600 (Thu, 19 Feb 2009) | 3 lines Since we recommend one module per import line, reflect this also in the documentation. ........ r69795 | benjamin.peterson | 2009-02-19 21:31:23 -0600 (Thu, 19 Feb 2009) | 1 line revert r69777 since all the experts agree that extra import lines distract from the code ........ 20 February 2009, 03:40:57 UTC
4b06819 fix None errno #5312 20 February 2009, 03:19:25 UTC
2fc224f #5306: Fix compilation on Windows by properly merging change 69495. + fixed an obvious merge glitch in a windows-only test. Patch by Hirokazu Yamamoto. I added a _PyVerify_fd() call to os.device_encoding() (new in python 3.0) which also uses a raw file descriptor. 19 February 2009, 23:23:47 UTC
b672b6d #5287: Add exception handling around findCaller() call to help out IronPython. 19 February 2009, 12:36:11 UTC
2d0c256 Inline coefficients in gamma(). Add reflection formula. Add comments. 19 February 2009, 09:53:18 UTC
b70bcf5 Regenerate with autoconf 2.61. 19 February 2009, 07:51:52 UTC
477be82 Add links to helpful external resources. 19 February 2009, 06:44:30 UTC
f3936f8 Add an example for math.fsum() and elaborate on the accurary note. 19 February 2009, 05:48:05 UTC
cdf8ba3 Add some cross-references to the docs. Simplify the python code equivalent for zip(). Supply an optional argument for the nth() recipe. 19 February 2009, 04:45:07 UTC
d75fcb4 Merged revisions 69576,69579-69580,69589,69619-69620,69633,69703-69704,69728-69730 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69576 | georg.brandl | 2009-02-13 04:56:50 -0600 (Fri, 13 Feb 2009) | 1 line #1661108: note that urlsafe encoded string can contain "=". ........ r69579 | georg.brandl | 2009-02-13 05:06:59 -0600 (Fri, 13 Feb 2009) | 2 lines Fix warnings GCC emits where the argument of PyErr_Format is a single variable. ........ r69580 | georg.brandl | 2009-02-13 05:10:04 -0600 (Fri, 13 Feb 2009) | 2 lines Fix warnings GCC emits where the argument of PyErr_Format is a single variable. ........ r69589 | martin.v.loewis | 2009-02-13 14:11:34 -0600 (Fri, 13 Feb 2009) | 2 lines Move amd64 properties further to the top, so that they override the linker options correctly. ........ r69619 | benjamin.peterson | 2009-02-14 11:00:51 -0600 (Sat, 14 Feb 2009) | 1 line this needn't be a shebang line ........ r69620 | georg.brandl | 2009-02-14 11:01:36 -0600 (Sat, 14 Feb 2009) | 1 line #5179: don't leak PIPE fds when child execution fails. ........ r69633 | hirokazu.yamamoto | 2009-02-15 03:19:48 -0600 (Sun, 15 Feb 2009) | 1 line Fixed typo. ........ r69703 | raymond.hettinger | 2009-02-16 16:42:54 -0600 (Mon, 16 Feb 2009) | 3 lines Issue 5229: Documentation for super() neglects to say what super() actually does ........ r69704 | raymond.hettinger | 2009-02-16 17:00:25 -0600 (Mon, 16 Feb 2009) | 1 line Add explanation for super(type1, type2). ........ r69728 | georg.brandl | 2009-02-17 18:22:55 -0600 (Tue, 17 Feb 2009) | 2 lines #5297: fix example. ........ r69729 | georg.brandl | 2009-02-17 18:25:13 -0600 (Tue, 17 Feb 2009) | 2 lines #5296: sequence -> iterable. ........ r69730 | georg.brandl | 2009-02-17 18:31:36 -0600 (Tue, 17 Feb 2009) | 2 lines #5268: mention VMSError. ........ 19 February 2009, 04:22:03 UTC
e69a6b2 Blocked revisions 69748,69751 via svnmerge ........ r69748 | raymond.hettinger | 2009-02-18 20:15:14 -0600 (Wed, 18 Feb 2009) | 1 line Add keyword arg support to itertools.compress(). ........ r69751 | raymond.hettinger | 2009-02-18 20:38:25 -0600 (Wed, 18 Feb 2009) | 1 line Add keyword arg support to itertools.repeat(). ........ 19 February 2009, 03:24:17 UTC
f4bb7f2 Add keyword arg support to itertools.repeat(). 19 February 2009, 02:44:01 UTC
15a4950 Add keyword arg support to itertools.compress(). 19 February 2009, 02:17:09 UTC
bc67084 Blocked revisions 69716 via svnmerge ........ r69716 | ronald.oussoren | 2009-02-17 06:38:42 -0600 (Tue, 17 Feb 2009) | 2 lines Fix issue776533. ........ 19 February 2009, 02:17:08 UTC
adea532 Blocked revisions 69414,69561,69604,69672,69689,69709,69715,69717,69739,69743 via svnmerge ........ r69414 | georg.brandl | 2009-02-07 12:49:54 -0600 (Sat, 07 Feb 2009) | 1 line make "super only for new-style classes" a note. ........ r69561 | gregory.p.smith | 2009-02-12 21:00:00 -0600 (Thu, 12 Feb 2009) | 5 lines - Issue #3745: Fix hashlib to always reject unicode and non buffer-api supporting objects as input no matter how it was compiled (built in implementations or external openssl library). (backported from a py3k branch) ........ r69604 | raymond.hettinger | 2009-02-13 18:25:51 -0600 (Fri, 13 Feb 2009) | 1 line Add keyword argument support to itertools.count(). ........ r69672 | benjamin.peterson | 2009-02-16 08:54:34 -0600 (Mon, 16 Feb 2009) | 1 line note functions that are not aliased to PyBytes_ #5280 ........ r69689 | benjamin.peterson | 2009-02-16 15:09:09 -0600 (Mon, 16 Feb 2009) | 1 line remove some PyBytes_* aliases that are not in 3.x ........ r69709 | raymond.hettinger | 2009-02-17 02:33:01 -0600 (Tue, 17 Feb 2009) | 1 line Fix-up intro paragraph for collections docs. ........ r69715 | raymond.hettinger | 2009-02-17 05:00:27 -0600 (Tue, 17 Feb 2009) | 1 line Fixup intro paragraphs for the itertools docs. Add some tables for quick reference. ........ r69717 | marc-andre.lemburg | 2009-02-17 06:48:19 -0600 (Tue, 17 Feb 2009) | 5 lines Clarify the deprecation of platform.dist(). Add versionadded tags. ........ r69739 | raymond.hettinger | 2009-02-18 14:54:53 -0600 (Wed, 18 Feb 2009) | 1 line Generalize the itertools.tee() recipe. ........ r69743 | raymond.hettinger | 2009-02-18 17:10:19 -0600 (Wed, 18 Feb 2009) | 1 line Py3k warnings now automatically include -Qwarn for division. ........ 19 February 2009, 02:12:26 UTC
349c595 merge socket module documentation update from trunk r69731. 19 February 2009, 01:25:51 UTC
cf984ce Generalize the itertools.tee() recipe. 18 February 2009, 20:56:51 UTC
0654ccd Merged revisions 69714,69718 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69714 | hirokazu.yamamoto | 2009-02-17 19:12:10 +0900 | 1 line Issue #5292: Fixed mmap crash on its boundary access m[len(m)]. ........ r69718 | hirokazu.yamamoto | 2009-02-17 22:17:26 +0900 | 3 lines Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0, The file was resized to wrong size. ........ 18 February 2009, 16:38:00 UTC
14d34a0 Merged revisions 69724 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69724 | tarek.ziade | 2009-02-18 00:06:51 +0100 (Wed, 18 Feb 2009) | 1 line fixed the data_files inclusion behavior ........ 17 February 2009, 23:10:18 UTC
acd82b9 Fix-up intro paragraph for collections docs. 17 February 2009, 20:06:51 UTC
f76b920 Fixup intro paragraphs for the itertools docs. Add some tables for quick reference. 17 February 2009, 20:00:59 UTC
a30337a Merged revisions 69710 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69710 | tarek.ziade | 2009-02-17 10:42:44 +0100 (Tue, 17 Feb 2009) | 1 line #2279 added the plain path case for data_files ........ 17 February 2009, 09:47:25 UTC
33dbf46 Outline a possible way to separate out source loading from bytecode loading. 17 February 2009, 07:15:17 UTC
d2e7b33 Implement the more specific PEP 302 semantics for loaders and what happens upon load failure in relation to reloads. Also expose importlib.util.module_for_loader to handle all of the details of this along with making sure all current loaders behave nicely. 17 February 2009, 02:45:03 UTC
0586ed6 I think this file has long outlived its usefulness 17 February 2009, 01:53:19 UTC
555f0e9 Merged revisions 69700 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69700 | tarek.ziade | 2009-02-16 23:38:43 +0100 (Mon, 16 Feb 2009) | 1 line note about #2279 ........ 16 February 2009, 22:42:39 UTC
de27e48 Merged revisions 69693 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69693 | tarek.ziade | 2009-02-16 22:41:54 +0100 (Mon, 16 Feb 2009) | 1 line #2279: use os.sep so the MANIFEST file test work on win32 ........ 16 February 2009, 21:51:13 UTC
0d0506e Merged revisions 69692 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69692 | tarek.ziade | 2009-02-16 22:38:01 +0100 (Mon, 16 Feb 2009) | 1 line Fixed #2279: distutils.sdist.add_defaults now add files listed in package_data and data_files ........ 16 February 2009, 21:49:12 UTC
25e26a0 Merged revisions 69688,69690 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69688 | benjamin.peterson | 2009-02-16 15:07:52 -0600 (Mon, 16 Feb 2009) | 1 line fix compiler warnings ........ r69690 | benjamin.peterson | 2009-02-16 15:23:04 -0600 (Mon, 16 Feb 2009) | 1 line PyList_Append() can fail ........ 16 February 2009, 21:28:29 UTC
2c9abd5 Blocked revisions 69685 via svnmerge ........ r69685 | raymond.hettinger | 2009-02-16 14:39:12 -0600 (Mon, 16 Feb 2009) | 1 line Add GC support to count() objects. Backport candidate. ........ 16 February 2009, 21:02:16 UTC
d6280f4 Add GC support to count() objects. 16 February 2009, 20:50:56 UTC
d67c60f remove another use of cmp() 16 February 2009, 18:22:15 UTC
821d0f8 no 2.3 compat in the py3k lib #3676 16 February 2009, 16:20:10 UTC
b785169 raise more generic Exception() instead of RuntimeError() #5281 16 February 2009, 16:15:34 UTC
6ab2479 Removed message about compatibility with 2.3. 16 February 2009, 15:41:37 UTC
db9ac1d Merged revisions 69666 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69666 | eric.smith | 2009-02-16 04:56:39 -0500 (Mon, 16 Feb 2009) | 1 line Added Ross Light to ACKS, for bug 4285 (r69331). ........ 16 February 2009, 12:37:11 UTC
575d133 Issue #5249: time.strftime returned malformed string when format string contained non ascii character on windows. 16 February 2009, 09:13:20 UTC
debb98d Document importlib.machinery.PathFinder. 16 February 2009, 04:18:01 UTC
0d4785b Fix more places in Objects/longobject.c where it's silently assumed that sizeof(digit) < sizeof(int). 15 February 2009, 17:27:41 UTC
9d87613 Blocked revisions 69639 via svnmerge ........ r69639 | mark.dickinson | 2009-02-15 15:48:39 +0000 (Sun, 15 Feb 2009) | 2 lines A few more minor fixed in longobject.c ........ 15 February 2009, 15:49:16 UTC
e441674 A few more type fixes for py3k that were missed in r69635 15 February 2009, 15:14:57 UTC
5a74bf6 Merged revisions 69634 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69634 | mark.dickinson | 2009-02-15 10:13:41 +0000 (Sun, 15 Feb 2009) | 6 lines Issue #5260: Various portability and standards compliance fixes, optimizations and cleanups in Objects/longobject.c. The most significant change is that longs now use less memory: average savings are 2 bytes per long on 32-bit systems and 6 bytes per long on 64-bit systems. (This memory saving already exists in py3k.) ........ 15 February 2009, 11:04:38 UTC
32732e3 Change importlib.machinery.PathFinder to not have implicit semantics (that's not handled by importlib._bootstrap._DefaultPathFinder). 15 February 2009, 05:48:13 UTC
4b4a4a5 Add a NOTE about the new specific semantics for failed loads. 15 February 2009, 05:46:50 UTC
130786f Merged revisions 69617 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69617 | benjamin.peterson | 2009-02-14 10:51:03 -0600 (Sat, 14 Feb 2009) | 1 line we're no longer using CVS, so this doesn't have to be binary ........ 14 February 2009, 17:00:16 UTC
ca4fa07 Blocked revisions 69610 via svnmerge ........ r69610 | tarek.ziade | 2009-02-14 15:12:30 +0100 (Sat, 14 Feb 2009) | 1 line Replace variable ........ 14 February 2009, 14:36:38 UTC
c1375d5 Merged revisions 69609 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69609 | tarek.ziade | 2009-02-14 15:10:23 +0100 (Sat, 14 Feb 2009) | 1 line Fix for #5257: refactored all tests in distutils, so they use a temporary directory. ........ 14 February 2009, 14:35:51 UTC
9e8dbbc Add keyword argument support to itertools.count(). 14 February 2009, 04:21:49 UTC
8c20189 Merged revisions 69602 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69602 | tarek.ziade | 2009-02-14 00:41:57 +0100 (Sat, 14 Feb 2009) | 1 line fix the environ for distutils test_util ........ 13 February 2009, 23:48:11 UTC
68c5095 Merged revisions 69598 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69598 | tarek.ziade | 2009-02-14 00:00:43 +0100 (Sat, 14 Feb 2009) | 1 line Fixed #4524: distutils build_script command failed with --with-suffix=3 ........ 13 February 2009, 23:04:17 UTC
811d624 Merged revisions 69594 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69594 | tarek.ziade | 2009-02-13 23:22:03 +0100 (Fri, 13 Feb 2009) | 1 line Issue #2461: added tests for distutils.util ........ 13 February 2009, 22:26:15 UTC
9033dcb Fix typos in version numbers. 13 February 2009, 20:27:39 UTC
d7b5f66 Merged revisions 69585 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69585 | tarek.ziade | 2009-02-13 17:13:16 +0100 (Fri, 13 Feb 2009) | 1 line reverted leak fix, to use the one done in py3k branch (r67382) ........ 13 February 2009, 16:23:57 UTC
79eee6b Merged revisions 69582-69583 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69582 | antoine.pitrou | 2009-02-13 14:52:33 +0100 (ven., 13 févr. 2009) | 4 lines Issue #5186: Reduce hash collisions for objects with no __hash__ method by rotating the object pointer by 4 bits to the right. ........ r69583 | antoine.pitrou | 2009-02-13 14:57:40 +0100 (ven., 13 févr. 2009) | 3 lines Fix compiler warning (gcc) ........ 13 February 2009, 14:01:05 UTC
b5de0f2 Blocked revisions 69578 via svnmerge ........ r69578 | georg.brandl | 2009-02-13 12:03:59 +0100 (Fr, 13 Feb 2009) | 1 line #3694: add test for fix committed in r66693. ........ 13 February 2009, 11:10:15 UTC
75c3d6f #3694: fix an "XXX undetected error" leak in struct. 13 February 2009, 11:01:07 UTC
c8dcfb6 part of #3613: fix get_host_info() usage of base64.encodestring(). 13 February 2009, 10:50:01 UTC
35e2c4e Blocked revisions 69573 via svnmerge ........ r69573 | georg.brandl | 2009-02-13 11:44:17 +0100 (Fr, 13 Feb 2009) | 1 line #3734: document complex coercing behavior better. ........ 13 February 2009, 10:44:28 UTC
c37f333 Blocked revisions 69570 via svnmerge ........ r69570 | georg.brandl | 2009-02-13 11:40:14 +0100 (Fr, 13 Feb 2009) | 1 line #4894: document "newurl" parameter to redirect_request(). ........ 13 February 2009, 10:42:52 UTC
9617a59 #4894: document "newurl" parameter to redirect_request(). 13 February 2009, 10:40:43 UTC
76cb7ed Merged revisions 69566 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r69566 | tarek.ziade | 2009-02-13 10:12:33 +0100 (Fri, 13 Feb 2009) | 1 line #5158: added documentation on the depends option in distutils extensions ........ 13 February 2009, 09:15:20 UTC
back to top