[pypy-commit] pypy default: add an underscore for the implementation-specific tmxxx

bdkearns noreply at buildbot.pypy.org
Sat Mar 9 04:15:19 CET 2013


Author: Brian Kearns <bdkearns at gmail.com>
Branch: 
Changeset: r62260:76c922af812e
Date: 2013-03-08 19:59 -0500
http://bitbucket.org/pypy/pypy/changeset/76c922af812e/

Log:	add an underscore for the implementation-specific tmxxx

diff --git a/lib_pypy/datetime.py b/lib_pypy/datetime.py
--- a/lib_pypy/datetime.py
+++ b/lib_pypy/datetime.py
@@ -353,7 +353,7 @@
 # second-guess timezones or DST.  Instead fold whatever adjustments you want
 # into the minutes argument (and the constructor will normalize).
 
-class tmxxx:
+class _tmxxx:
 
     ordinal = None
 
@@ -960,7 +960,7 @@
     def __add__(self, other):
         "Add a date to a timedelta."
         if isinstance(other, timedelta):
-            t = tmxxx(self._year,
+            t = _tmxxx(self._year,
                       self._month,
                       self._day + other.days)
             self._checkOverflow(t.year)
@@ -1585,7 +1585,7 @@
         hh, mm, ss = self.hour, self.minute, self.second
         offset = self._utcoffset()
         if offset:  # neither None nor 0
-            tm = tmxxx(y, m, d, hh, mm - offset)
+            tm = _tmxxx(y, m, d, hh, mm - offset)
             y, m, d = tm.year, tm.month, tm.day
             hh, mm = tm.hour, tm.minute
         return _build_struct_time(y, m, d, hh, mm, ss, 0)
@@ -1856,7 +1856,7 @@
         "Add a datetime and a timedelta."
         if not isinstance(other, timedelta):
             return NotImplemented
-        t = tmxxx(self._year,
+        t = _tmxxx(self._year,
                   self._month,
                   self._day + other.days,
                   self._hour,


More information about the pypy-commit mailing list