[Python-checkins] python/dist/src/Lib/email Header.py,1.3,1.4

Tim Peters tim_one@email.msn.com
Sat, 1 Jun 2002 02:02:34 -0400


[Barry]
> Modified Files:
> 	Header.py
> Log Message:
> The _compat modules now export _floordiv() instead of _intdiv2() for
> better code reuse.

FYI, there's no law (yet) against shifting right by 1, and i >> 1 is
identical to i//2 for ints and longs.