]> granicus.if.org Git - python/commitdiff
Docstring changes.
authorAndrew M. Kuchling <amk@amk.ca>
Tue, 11 Jul 2000 10:38:24 +0000 (10:38 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Tue, 11 Jul 2000 10:38:24 +0000 (10:38 +0000)
Lib/curses/ascii.py
Lib/curses/textpad.py

index df63e73e35d961afb6b40d2e89116a79c825a3e6..1135510bbefca1e16e1260c6ca8ba0a229fb488f 100644 (file)
@@ -1,6 +1,4 @@
-#
-# ascii.py -- constants and membership tests for ASCII characters
-#
+"""Constants and membership tests for ASCII characters"""
 
 NUL    = 0x00  # ^@
 SOH    = 0x01  # ^A
index 93771c956682ce6857b246bfaacf23c6b1af17dc..97ee36bdb5654a486dc2cf902cf8adc5fe1f6ec7 100644 (file)
@@ -1,6 +1,4 @@
-"""curses.textpad
-
-"""
+"""Simple textbox editing widget with Emacs-like keybindings."""
 
 import sys, curses, ascii