Author: Brian Kearns <[email protected]>
Branch:
Changeset: r62099:91e0e964585a
Date: 2013-03-05 16:11 -0500
http://bitbucket.org/pypy/pypy/changeset/91e0e964585a/
Log: pep8
diff --git a/lib_pypy/datetime.py b/lib_pypy/datetime.py
--- a/lib_pypy/datetime.py
+++ b/lib_pypy/datetime.py
@@ -570,8 +570,8 @@
def total_seconds(self):
"""Total seconds in the duration."""
- return ((self.days * 86400 + self.seconds) * 10**6
- + self.microseconds) / 1e6
+ return ((self.days * 86400 + self.seconds) * 10**6 +
+ self.microseconds) / 1e6
# Read-only field accessors
@property
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit