• Mark Dickinson's avatar
    Merged revisions 75110 via svnmerge from · 24f5785f
    Mark Dickinson yazdı
    svn+ssh://pythondev@svn.python.org/python/trunk
    
    ........
      r75110 | mark.dickinson | 2009-09-28 17:52:40 +0100 (Mon, 28 Sep 2009) | 9 lines
    
      Style/consistency/nano-optimization nit:  replace occurrences of
        (high_bits << PyLong_SHIFT) + low_bits with
        (high_bits << PyLong_SHIFT) | low_bits
      in Objects/longobject.c.  Motivation:
       - shouldn't unnecessarily mix bit ops with arithmetic ops (style)
       - this pattern should be spelt the same way thoughout (consistency)
       - it's very very very slightly faster: no need to worry about
         carries to the high digit (nano-optimization).
    ........
    24f5785f
Adı
Son kayıt (commit)
Son güncelleme
Demo Loading commit data...
Doc Loading commit data...
Grammar Loading commit data...
Include Loading commit data...
Lib Loading commit data...
Mac Loading commit data...
Misc Loading commit data...
Modules Loading commit data...
Objects Loading commit data...
PC Loading commit data...
PCbuild Loading commit data...
Parser Loading commit data...
Python Loading commit data...
Tools Loading commit data...
.bzrignore Loading commit data...
.hgignore Loading commit data...
.hgtags Loading commit data...
LICENSE Loading commit data...
Makefile.pre.in Loading commit data...
README Loading commit data...
configure Loading commit data...
configure.in Loading commit data...
install-sh Loading commit data...
pyconfig.h.in Loading commit data...
runtests.sh Loading commit data...
setup.py Loading commit data...