diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2004-06-07 03:47:06 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2004-06-07 03:47:06 (GMT) |
commit | 492faa5505add29b790022e7afba61415a93c9ad (patch) | |
tree | 2245f7fcc7303a4d657cc4857f702feb24a140e7 /Lib/calendar.py | |
parent | c75f89187927dff4f66f9bd9da183f9e1be9dde9 (diff) | |
download | cpython-492faa5505add29b790022e7afba61415a93c9ad.zip cpython-492faa5505add29b790022e7afba61415a93c9ad.tar.gz cpython-492faa5505add29b790022e7afba61415a93c9ad.tar.bz2 |
There is no reason to have an underscore after self
Diffstat (limited to 'Lib/calendar.py')
-rw-r--r-- | Lib/calendar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/calendar.py b/Lib/calendar.py index 321059d..c2a9775 100644 --- a/Lib/calendar.py +++ b/Lib/calendar.py @@ -50,7 +50,7 @@ class _localized_day: for j in range(7)] return data[i] - def __len__(self_): + def __len__(self): return 7 # Full and abbreviated names of weekdays |