[Python-checkins] CVS: python/dist/src/Lib/curses ascii.py,1.2,1.3 textpad.py,1.2,1.3

A.M. Kuchling python-dev@python.org
Tue, 11 Jul 2000 03:38:28 -0700


Update of /cvsroot/python/python/dist/src/Lib/curses
In directory slayer.i.sourceforge.net:/tmp/cvs-serv1998

Modified Files:
	ascii.py textpad.py 
Log Message:
Docstring changes.


Index: ascii.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/curses/ascii.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** ascii.py	2000/06/27 14:15:29	1.2
--- ascii.py	2000/07/11 10:38:24	1.3
***************
*** 1,5 ****
! #
! # ascii.py -- constants and membership tests for ASCII characters
! #
  
  NUL	= 0x00	# ^@
--- 1,3 ----
! """Constants and membership tests for ASCII characters"""
  
  NUL	= 0x00	# ^@

Index: textpad.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/curses/textpad.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** textpad.py	2000/06/27 00:53:12	1.2
--- textpad.py	2000/07/11 10:38:24	1.3
***************
*** 1,5 ****
! """curses.textpad
! 
! """
  
  import sys, curses, ascii
--- 1,3 ----
! """Simple textbox editing widget with Emacs-like keybindings."""
  
  import sys, curses, ascii