[pypy-commit] pypy default: whitespace

bdkearns noreply at buildbot.pypy.org
Tue Mar 5 05:15:01 CET 2013


Author: Brian Kearns <bdkearns at gmail.com>
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,


More information about the pypy-commit mailing list