[Python-checkins] python/dist/src/Lib calendar.py,1.33,1.34

nnorwitz at users.sourceforge.net nnorwitz at users.sourceforge.net
Sun Jun 6 23:47:08 EDT 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5100

Modified Files:
	calendar.py 
Log Message:
There is no reason to have an underscore after self

Index: calendar.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/calendar.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** calendar.py	12 Feb 2004 17:35:06 -0000	1.33
--- calendar.py	7 Jun 2004 03:47:06 -0000	1.34
***************
*** 51,55 ****
          return data[i]
  
!     def __len__(self_):
          return 7
  
--- 51,55 ----
          return data[i]
  
!     def __len__(self):
          return 7
  




More information about the Python-checkins mailing list