From: Neal Norwitz Date: Mon, 7 Jun 2004 03:47:06 +0000 (+0000) Subject: There is no reason to have an underscore after self X-Git-Tag: v2.4a1~233 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=492faa5505add29b790022e7afba61415a93c9ad;p=python There is no reason to have an underscore after self --- diff --git a/Lib/calendar.py b/Lib/calendar.py index 321059d055..c2a9775ebf 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