[Python-checkins] r68253 - python/branches/release30-maint

georg.brandl python-checkins at python.org
Sun Jan 4 00:26:38 CET 2009


Author: georg.brandl
Date: Sun Jan  4 00:26:37 2009
New Revision: 68253

Log:
Blocked revisions 67713,67715,67747,67824,67839,67851,67858,67939 via svnmerge

................
  r67713 | benjamin.peterson | 2008-12-12 02:33:38 +0100 (Fri, 12 Dec 2008) | 1 line
  
  reuse tokenize.detect_encoding for linecache #4016
................
  r67715 | benjamin.peterson | 2008-12-12 03:02:24 +0100 (Fri, 12 Dec 2008) | 1 line
  
  revert r67713. it causes build problems
................
  r67747 | antoine.pitrou | 2008-12-14 00:20:54 +0100 (Sun, 14 Dec 2008) | 3 lines
  
  Issue #4163: textwrap module: allow word splitting on a hyphen preceded by a non-ASCII letter.
................
  r67824 | mark.dickinson | 2008-12-17 17:19:07 +0100 (Wed, 17 Dec 2008) | 2 lines
  
  Forward merge of r67822 to py3k: add bit_length method to int.
................
  r67839 | antoine.pitrou | 2008-12-18 12:06:25 +0100 (Thu, 18 Dec 2008) | 9 lines
  
  Merged revisions 67818 via svnmerge from 
  svn+ssh://pythondev@svn.python.org/python/trunk
  
  ........
    r67818 | antoine.pitrou | 2008-12-17 01:38:28 +0100 (mer., 17 d?\195?\169c. 2008) | 3 lines
    
    Issue #2183: Simplify and optimize bytecode for list comprehensions.
  ........
................
  r67851 | raymond.hettinger | 2008-12-19 10:11:49 +0100 (Fri, 19 Dec 2008) | 9 lines
  
  Fix-up and clean-up docs for int.bit_length().
  
  * Replace dramatic footnote with in-line comment about possible round-off errors in logarithms of large numbers.
  * Add comments to the pure python code equivalent.
  * replace floor() with int() in the mathematical equivalent so the type is correct (should be an int, not a float).
  * add abs() to the mathematical equivalent so that it matches the previous line that it is supposed to be equivalent to.
  * make one combined example with a negative input.
................
  r67858 | mark.dickinson | 2008-12-19 18:48:51 +0100 (Fri, 19 Dec 2008) | 9 lines
  
  Merged revisions 67857 via svnmerge from 
  svn+ssh://pythondev@svn.python.org/python/trunk
  
  ........
    r67857 | mark.dickinson | 2008-12-19 17:46:51 +0000 (Fri, 19 Dec 2008) | 2 lines
    
    Fix typo in Python equivalent for bit_length.
  ........
................
  r67939 | alexandre.vassalotti | 2008-12-27 10:16:49 +0100 (Sat, 27 Dec 2008) | 6 lines
  
  Optimize built-in unicode codecs by avoiding unnecessary copying.
  
  The approach used is similiar to what is currently used in the version
  of unicodeobject.c in Python 2.x. The only difference is we use
  _PyBytes_Resize instead of _PyString_Resize.
................


Modified:
   python/branches/release30-maint/   (props changed)


More information about the Python-checkins mailing list