bpo-33541: Remove unused __pad function (GH-4377)

Function was added with the initial implementation 00efe7e798.
This commit is contained in:
Mario Corchero 2018-05-20 13:42:30 -04:00 committed by Alexander Belopolsky
parent 0c4be82890
commit 89a25ce4fd
2 changed files with 2 additions and 9 deletions

View File

@ -77,15 +77,6 @@ class LocaleTime(object):
if time.tzname != self.tzname or time.daylight != self.daylight:
raise ValueError("timezone changed during initialization")
def __pad(self, seq, front):
# Add '' to seq to either the front (is True), else the back.
seq = list(seq)
if front:
seq.insert(0, '')
else:
seq.append('')
return seq
def __calc_weekday(self):
# Set self.a_weekday and self.f_weekday using the calendar
# module.

View File

@ -0,0 +1,2 @@
Remove unused private method ``_strptime.LocaleTime.__pad`` (a.k.a.
``_LocaleTime__pad``).