[Zope3-checkins] CVS: Zope3/src/datetime - _datetime.py:1.3
Tim Peters
tim.one@comcast.net
Wed, 25 Dec 2002 14:29:21 -0500
Update of /cvs-repository/Zope3/src/datetime
In directory cvs.zope.org:/tmp/cvs-serv1656/src/datetime
Modified Files:
_datetime.py
Log Message:
Whitespace normalization, via doing
path_to_python_root/Tools/scripts/reindent -v -r .
from the Zope3 root. Doing this regularly will get rid of DOS line
endings, get rid of hard-coded tab characters, get rid of 2-space and
17-space (etc) indents (it normalizes them to 4-space), ensure every
.py file has a (exactly one) ending newline, and get rid of trailing
whitespace on lines. Done regularly, it's not disruptive (I do the
same for Python's Lib directory a few times per month).
=== Zope3/src/datetime/_datetime.py 1.2 => 1.3 ===
--- Zope3/src/datetime/_datetime.py:1.2 Wed Dec 25 09:12:11 2002
+++ Zope3/src/datetime/_datetime.py Wed Dec 25 14:28:50 2002
@@ -1758,7 +1758,7 @@
# implementation had to get much trickier, and the code following emulates
# what the C code had to do, so that pickles produced by the Python
# implementation can be read by the C implementation, and vice versa.
-
+
def _date_pickler(date):
state = date.__getstate__()
return _date_unpickler, (state,)