Style/consistency/nano-optimization nit: replace occurrences of
commit4cc3af33f65006894036e458d8ea4effbc31fa82
authormark.dickinson <mark.dickinson@6015fed2-1504-0410-9fe1-9d1591cc4771>
Mon, 28 Sep 2009 16:52:40 +0000 (28 16:52 +0000)
committermark.dickinson <mark.dickinson@6015fed2-1504-0410-9fe1-9d1591cc4771>
Mon, 28 Sep 2009 16:52:40 +0000 (28 16:52 +0000)
treecc58f1d33f5d0e62e751bbb34655efd860ce9d2b
parentb3cc67ed57a395300daaff4b72a63eb78f6c2f06
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).

git-svn-id: http://svn.python.org/projects/python/trunk@75110 6015fed2-1504-0410-9fe1-9d1591cc4771
Objects/longobject.c