diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-07-11 10:38:24 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-07-11 10:38:24 (GMT) |
commit | e0d0090e76075a983d42aedad1c4fc2e77db847c (patch) | |
tree | bd78eb7954937662bd36db2a3f5c275120bfcac0 /Lib/curses | |
parent | 566d8a64eb4f51510dd17df8a478e7c0c10ec498 (diff) | |
download | cpython-e0d0090e76075a983d42aedad1c4fc2e77db847c.zip cpython-e0d0090e76075a983d42aedad1c4fc2e77db847c.tar.gz cpython-e0d0090e76075a983d42aedad1c4fc2e77db847c.tar.bz2 |
Docstring changes.
Diffstat (limited to 'Lib/curses')
-rw-r--r-- | Lib/curses/ascii.py | 4 | ||||
-rw-r--r-- | Lib/curses/textpad.py | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/Lib/curses/ascii.py b/Lib/curses/ascii.py index df63e73..1135510 100644 --- a/Lib/curses/ascii.py +++ b/Lib/curses/ascii.py @@ -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 diff --git a/Lib/curses/textpad.py b/Lib/curses/textpad.py index 93771c9..97ee36b 100644 --- a/Lib/curses/textpad.py +++ b/Lib/curses/textpad.py @@ -1,6 +1,4 @@ -"""curses.textpad - -""" +"""Simple textbox editing widget with Emacs-like keybindings.""" import sys, curses, ascii |