Author: Brian Kearns <[email protected]>
Branch: 
Changeset: r62045:526e593733b5
Date: 2013-03-04 22:16 -0500
http://bitbucket.org/pypy/pypy/changeset/526e593733b5/

Log:    whitespace

diff --git a/lib_pypy/datetime.py b/lib_pypy/datetime.py
--- a/lib_pypy/datetime.py
+++ b/lib_pypy/datetime.py
@@ -458,7 +458,6 @@
     Representation: (days, seconds, microseconds).  Why?  Because I
     felt like it.
     """
-
     __slots__ = '_days', '_seconds', '_microseconds'
 
     def __new__(cls, days=0, seconds=0, microseconds=0,
@@ -772,7 +771,6 @@
     Properties (readonly):
     year, month, day
     """
-
     __slots__ = '_year', '_month', '_day'
 
     def __new__(cls, year, month=None, day=None):
@@ -1065,7 +1063,6 @@
 
     Subclasses must override the name(), utcoffset() and dst() methods.
     """
-
     __slots__ = ()
 
     def tzname(self, dt):
@@ -1157,7 +1154,6 @@
     Properties (readonly):
     hour, minute, second, microsecond, tzinfo
     """
-
     __slots__ = '_hour', '_minute', '_second', '_microsecond', '_tzinfo'
 
     def __new__(cls, hour=0, minute=0, second=0, microsecond=0, tzinfo=None):
@@ -1458,7 +1454,6 @@
     The year, month and day arguments are required. tzinfo may be None, or an
     instance of a tzinfo subclass. The remaining arguments may be ints or 
longs.
     """
-
     __slots__ = date.__slots__ + time.__slots__
 
     def __new__(cls, year, month=None, day=None, hour=0, minute=0, second=0,
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to