Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60568-60598,60600-60616 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r60568 | christian.heimes | 2008-02-04 19:48:38 +0100 (Mon, 04 Feb 2008) | 1 line
Increase debugging to investige failing tests on some build bots
........
r60570 | christian.heimes | 2008-02-04 20:30:05 +0100 (Mon, 04 Feb 2008) | 1 line
Small adjustments for test compact freelist test. It's no passing on Windows as well.
........
r60573 | amaury.forgeotdarc | 2008-02-04 21:53:14 +0100 (Mon, 04 Feb 2008) | 2 lines
Correct quotes in NEWS file
........
r60575 | amaury.forgeotdarc | 2008-02-04 22:45:05 +0100 (Mon, 04 Feb 2008) | 13 lines
#1750076: Debugger did not step on every iteration of a while statement.
The mapping between bytecode offsets and source lines (lnotab) did not contain
an entry for the beginning of the loop.
Now it does, and the lnotab can be a bit larger:
in particular, several statements on the same line generate several entries.
However, this does not bother the settrace function, which will trigger only
one 'line' event.
The lnotab seems to be exactly the same as with python2.4.
........
r60584 | amaury.forgeotdarc | 2008-02-05 01:26:21 +0100 (Tue, 05 Feb 2008) | 3 lines
Change r60575 broke test_compile:
there is no need to emit co_lnotab item when both offsets are zeros.
........
r60587 | skip.montanaro | 2008-02-05 03:32:16 +0100 (Tue, 05 Feb 2008) | 1 line
sync with most recent version from python-mode sf project
........
r60588 | lars.gustaebel | 2008-02-05 12:51:40 +0100 (Tue, 05 Feb 2008) | 5 lines
Issue #2004: Use mode 0700 for temporary directories and default
permissions for missing directories.
(will backport to 2.5)
........
r60590 | georg.brandl | 2008-02-05 13:01:24 +0100 (Tue, 05 Feb 2008) | 2 lines
Convert external links to internal links. Fixes #2010.
........
r60592 | marc-andre.lemburg | 2008-02-05 15:50:40 +0100 (Tue, 05 Feb 2008) | 3 lines
Keep distutils Python 2.1 compatible (or even Python 2.4 in this case).
........
r60593 | andrew.kuchling | 2008-02-05 17:06:57 +0100 (Tue, 05 Feb 2008) | 5 lines
Update PEP URL.
(This code is duplicated between pydoc and DocXMLRPCServer; maybe it
should be refactored as a GHOP project.)
2.5.2 backport candidate.
........
r60596 | guido.van.rossum | 2008-02-05 18:32:15 +0100 (Tue, 05 Feb 2008) | 2 lines
In the experimental 'Scanner' feature, the group count was set wrong.
........
r60602 | facundo.batista | 2008-02-05 20:03:32 +0100 (Tue, 05 Feb 2008) | 3 lines
Issue 1951. Converts wave test cases to unittest.
........
r60603 | georg.brandl | 2008-02-05 20:07:10 +0100 (Tue, 05 Feb 2008) | 2 lines
Actually run the test.
........
r60604 | skip.montanaro | 2008-02-05 20:24:30 +0100 (Tue, 05 Feb 2008) | 2 lines
correct object name
........
r60605 | georg.brandl | 2008-02-05 20:58:17 +0100 (Tue, 05 Feb 2008) | 7 lines
* Use the same code to profile for test_profile and test_cprofile.
* Convert both to unittest.
* Use the same unit testing code.
* Include the expected output in both test files.
* Make it possible to regenerate the expected output by running
the file as a script with an '-r' argument.
........
r60613 | raymond.hettinger | 2008-02-06 02:49:00 +0100 (Wed, 06 Feb 2008) | 1 line
Sync-up with Py3k work.
........
r60614 | christian.heimes | 2008-02-06 13:44:34 +0100 (Wed, 06 Feb 2008) | 1 line
Limit free list of method and builtin function objects to 256 entries each.
........
r60616 | christian.heimes | 2008-02-06 14:33:44 +0100 (Wed, 06 Feb 2008) | 7 lines
Unified naming convention for free lists and their limits. All free lists
in Object/ are named ``free_list``, the counter ``numfree`` and the upper
limit is a macro ``PyName_MAXFREELIST`` inside an #ifndef block.
The chances should make it easier to adjust Python for platforms with
less memory, e.g. mobile phones.
........
2008-02-06 10:31:34 -04:00
|
|
|
.. _curses-howto:
|
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
**********************************
|
|
|
|
Curses Programming with Python
|
|
|
|
**********************************
|
|
|
|
|
|
|
|
:Author: A.M. Kuchling, Eric S. Raymond
|
Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59987 | raymond.hettinger | 2008-01-15 21:52:42 +0100 (Tue, 15 Jan 2008) | 1 line
Refactor if/elif chain for clarity and speed. Remove dependency on subclasses having to implement _empty and _full.
........
r59988 | raymond.hettinger | 2008-01-15 22:22:47 +0100 (Tue, 15 Jan 2008) | 1 line
Fix-up half-written paragraph in the docs
........
r59989 | amaury.forgeotdarc | 2008-01-15 22:25:11 +0100 (Tue, 15 Jan 2008) | 3 lines
test_doctest fails since r59984.
Not sure if these are the correct values, but save_stdout has to be set before its usage...
........
r59992 | andrew.kuchling | 2008-01-16 01:32:03 +0100 (Wed, 16 Jan 2008) | 1 line
Docstring typos
........
r59993 | andrew.kuchling | 2008-01-16 04:17:25 +0100 (Wed, 16 Jan 2008) | 1 line
Add PEP 3141 section
........
r59998 | andrew.kuchling | 2008-01-16 14:01:51 +0100 (Wed, 16 Jan 2008) | 1 line
Markup fix
........
r59999 | georg.brandl | 2008-01-16 17:56:29 +0100 (Wed, 16 Jan 2008) | 2 lines
Fix MSDN library URL. (#1854)
........
r60006 | georg.brandl | 2008-01-16 21:27:56 +0100 (Wed, 16 Jan 2008) | 3 lines
Add Python-specific content to Doc dir. Update configuration file
to work with the newest Sphinx.
........
r60007 | georg.brandl | 2008-01-16 21:29:00 +0100 (Wed, 16 Jan 2008) | 2 lines
Doc build should work with 2.4 now.
........
r60009 | raymond.hettinger | 2008-01-17 00:38:16 +0100 (Thu, 17 Jan 2008) | 1 line
Minor wordsmithing.
........
r60010 | raymond.hettinger | 2008-01-17 00:40:45 +0100 (Thu, 17 Jan 2008) | 1 line
Add queues will alternative fetch orders (priority based and stack based).
........
r60011 | raymond.hettinger | 2008-01-17 00:49:35 +0100 (Thu, 17 Jan 2008) | 1 line
Add news entry.
........
r60013 | raymond.hettinger | 2008-01-17 04:02:14 +0100 (Thu, 17 Jan 2008) | 1 line
Make starmap() match its pure python definition and accept any itertable input (not just tuples).
........
r60015 | gregory.p.smith | 2008-01-17 08:43:20 +0100 (Thu, 17 Jan 2008) | 3 lines
Comply with RFC 3207.
Fixes issue 829951 - http://bugs.python.org/issue829951
........
r60018 | gregory.p.smith | 2008-01-17 09:03:17 +0100 (Thu, 17 Jan 2008) | 2 lines
entry for r60015
........
r60019 | raymond.hettinger | 2008-01-17 09:07:05 +0100 (Thu, 17 Jan 2008) | 1 line
Note versionadded.
........
r60020 | gregory.p.smith | 2008-01-17 09:35:49 +0100 (Thu, 17 Jan 2008) | 8 lines
Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339
- Factor out the duplication of EHLO/HELO in login() and sendmail() to
a new function, ehlo_or_helo_if_needed().
- Use ehlo_or_helo_if_needed() in starttls()
- Check for the starttls exception in starttls() in the same way as
login() checks for the auth extension.
Contributed by Bill Fenner.
........
r60021 | andrew.kuchling | 2008-01-17 13:00:15 +0100 (Thu, 17 Jan 2008) | 1 line
Revise 3141 section a bit; add some Windows items
........
r60022 | brett.cannon | 2008-01-17 19:45:10 +0100 (Thu, 17 Jan 2008) | 2 lines
Fix a function pointer declaration to silence the compiler.
........
r60024 | raymond.hettinger | 2008-01-17 20:31:38 +0100 (Thu, 17 Jan 2008) | 1 line
Issue #1861: Add read-only attribute listing upcoming events in the order they will be run.
........
r60025 | andrew.kuchling | 2008-01-17 20:49:24 +0100 (Thu, 17 Jan 2008) | 1 line
Correction from Jordan Lewis: halfdelay() uses tenths of a second, not milliseconds
........
r60026 | raymond.hettinger | 2008-01-17 23:27:49 +0100 (Thu, 17 Jan 2008) | 1 line
Add advice on choosing between scheduler and threading.Timer().
........
r60028 | christian.heimes | 2008-01-18 00:01:44 +0100 (Fri, 18 Jan 2008) | 2 lines
Updated new property syntax. An elaborate example for subclassing and the getter was missing.
Added comment about VS 2008 and PGO builds.
........
r60029 | raymond.hettinger | 2008-01-18 00:32:01 +0100 (Fri, 18 Jan 2008) | 1 line
Fix-up Timer() example.
........
r60030 | raymond.hettinger | 2008-01-18 00:56:56 +0100 (Fri, 18 Jan 2008) | 1 line
Fix markup
........
r60031 | raymond.hettinger | 2008-01-18 01:10:42 +0100 (Fri, 18 Jan 2008) | 1 line
clearcache() needs to remove the dict as well as clear it.
........
r60033 | andrew.kuchling | 2008-01-18 03:26:16 +0100 (Fri, 18 Jan 2008) | 1 line
Bump verson
........
r60034 | andrew.kuchling | 2008-01-18 03:42:52 +0100 (Fri, 18 Jan 2008) | 1 line
Typo fix
........
r60035 | christian.heimes | 2008-01-18 08:30:20 +0100 (Fri, 18 Jan 2008) | 3 lines
Coverity issue CID #197
var_decl: Declared variable "stm" without initializer
ninit_use_in_call: Using uninitialized value "stm" (field "stm".tm_zone uninitialized) in call to function "mktime"
........
r60036 | christian.heimes | 2008-01-18 08:45:30 +0100 (Fri, 18 Jan 2008) | 11 lines
Coverity issue CID #167
Event alloc_fn: Called allocation function "metacompile" [model]
Event var_assign: Assigned variable "gr" to storage returned from "metacompile"
gr = metacompile(n);
Event pass_arg: Variable "gr" not freed or pointed-to in function "maketables" [model]
g = maketables(gr);
translatelabels(g);
addfirstsets(g);
Event leaked_storage: Returned without freeing storage "gr"
return g;
........
r60038 | christian.heimes | 2008-01-18 09:04:57 +0100 (Fri, 18 Jan 2008) | 3 lines
Coverity issue CID #182
size_error: Allocating 1 bytes to pointer "children", which needs at least 4 bytes
........
r60041 | christian.heimes | 2008-01-18 09:47:59 +0100 (Fri, 18 Jan 2008) | 4 lines
Coverity issue CID #169
local_ptr_assign_local: Assigning address of stack variable "namebuf" to pointer "filename"
out_of_scope: Variable "namebuf" goes out of scope
use_invalid: Used "filename" pointing to out-of-scope variable "namebuf"
........
r60042 | christian.heimes | 2008-01-18 09:53:45 +0100 (Fri, 18 Jan 2008) | 2 lines
Coverity CID #168
leaked_storage: Returned without freeing storage "fp"
........
2008-01-18 05:56:22 -04:00
|
|
|
:Release: 2.03
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. topic:: Abstract
|
|
|
|
|
|
|
|
This document describes how to write text-mode programs with Python 2.x, using
|
|
|
|
the :mod:`curses` extension module to control the display.
|
|
|
|
|
|
|
|
|
|
|
|
What is curses?
|
|
|
|
===============
|
|
|
|
|
|
|
|
The curses library supplies a terminal-independent screen-painting and
|
|
|
|
keyboard-handling facility for text-based terminals; such terminals include
|
|
|
|
VT100s, the Linux console, and the simulated terminal provided by X11 programs
|
|
|
|
such as xterm and rxvt. Display terminals support various control codes to
|
|
|
|
perform common operations such as moving the cursor, scrolling the screen, and
|
|
|
|
erasing areas. Different terminals use widely differing codes, and often have
|
|
|
|
their own minor quirks.
|
|
|
|
|
|
|
|
In a world of X displays, one might ask "why bother"? It's true that
|
|
|
|
character-cell display terminals are an obsolete technology, but there are
|
|
|
|
niches in which being able to do fancy things with them are still valuable. One
|
|
|
|
is on small-footprint or embedded Unixes that don't carry an X server. Another
|
|
|
|
is for tools like OS installers and kernel configurators that may have to run
|
|
|
|
before X is available.
|
|
|
|
|
|
|
|
The curses library hides all the details of different terminals, and provides
|
|
|
|
the programmer with an abstraction of a display, containing multiple
|
|
|
|
non-overlapping windows. The contents of a window can be changed in various
|
|
|
|
ways-- adding text, erasing it, changing its appearance--and the curses library
|
|
|
|
will automagically figure out what control codes need to be sent to the terminal
|
|
|
|
to produce the right output.
|
|
|
|
|
|
|
|
The curses library was originally written for BSD Unix; the later System V
|
|
|
|
versions of Unix from AT&T added many enhancements and new functions. BSD curses
|
|
|
|
is no longer maintained, having been replaced by ncurses, which is an
|
|
|
|
open-source implementation of the AT&T interface. If you're using an
|
|
|
|
open-source Unix such as Linux or FreeBSD, your system almost certainly uses
|
|
|
|
ncurses. Since most current commercial Unix versions are based on System V
|
|
|
|
code, all the functions described here will probably be available. The older
|
|
|
|
versions of curses carried by some proprietary Unixes may not support
|
|
|
|
everything, though.
|
|
|
|
|
|
|
|
No one has made a Windows port of the curses module. On a Windows platform, try
|
|
|
|
the Console module written by Fredrik Lundh. The Console module provides
|
|
|
|
cursor-addressable text output, plus full support for mouse and keyboard input,
|
Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61239 | andrew.kuchling | 2008-03-05 01:44:41 +0100 (Wed, 05 Mar 2008) | 1 line
Add more items; add fragmentary notes
........
r61240 | amaury.forgeotdarc | 2008-03-05 02:50:33 +0100 (Wed, 05 Mar 2008) | 13 lines
Issue#2238: some syntax errors from *args or **kwargs expressions
would give bogus error messages, because of untested exceptions::
>>> f(**g(1=2))
XXX undetected error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'int' object is not iterable
instead of the expected SyntaxError: keyword can't be an expression
Will backport.
........
r61241 | neal.norwitz | 2008-03-05 06:10:48 +0100 (Wed, 05 Mar 2008) | 3 lines
Remove the files/dirs after closing the DB so the tests work on Windows.
Patch from Trent Nelson. Also simplified removing a file by using test_support.
........
r61242 | neal.norwitz | 2008-03-05 06:14:18 +0100 (Wed, 05 Mar 2008) | 3 lines
Get this test to pass even when there is no sound card in the system.
Patch from Trent Nelson. (I can't test this.)
........
r61243 | neal.norwitz | 2008-03-05 06:20:44 +0100 (Wed, 05 Mar 2008) | 3 lines
Catch OSError when trying to remove a file in case removal fails. This
should prevent a failure in tearDown masking any real test failure.
........
r61244 | neal.norwitz | 2008-03-05 06:38:06 +0100 (Wed, 05 Mar 2008) | 5 lines
Make the timeout longer to give slow machines a chance to pass the test
before timing out. This doesn't change the duration of the test under
normal circumstances. This is targetted at fixing the spurious failures
on the FreeBSD buildbot primarily.
........
r61245 | neal.norwitz | 2008-03-05 06:49:03 +0100 (Wed, 05 Mar 2008) | 1 line
Tabs -> spaces
........
r61246 | neal.norwitz | 2008-03-05 06:50:20 +0100 (Wed, 05 Mar 2008) | 1 line
Use -u urlfetch to run more tests
........
r61247 | neal.norwitz | 2008-03-05 06:51:20 +0100 (Wed, 05 Mar 2008) | 1 line
test_smtplib sometimes reports leaks too, suppress it
........
r61248 | jeffrey.yasskin | 2008-03-05 07:19:56 +0100 (Wed, 05 Mar 2008) | 5 lines
Fix test_socketserver on Windows after r61099 added several signal.alarm()
calls (which don't exist on non-Unix platforms).
Thanks to Trent Nelson for the report and patch.
........
r61249 | georg.brandl | 2008-03-05 08:10:35 +0100 (Wed, 05 Mar 2008) | 2 lines
Fix some rst.
........
r61252 | thomas.heller | 2008-03-05 15:53:39 +0100 (Wed, 05 Mar 2008) | 2 lines
News entry for yesterdays commit.
........
r61253 | thomas.heller | 2008-03-05 16:34:29 +0100 (Wed, 05 Mar 2008) | 3 lines
Issue 1872: Changed the struct module typecode from 't' to '?', for
compatibility with PEP3118.
........
r61254 | skip.montanaro | 2008-03-05 17:41:09 +0100 (Wed, 05 Mar 2008) | 4 lines
Elaborate on the role of the altinstall target when installing multiple
versions.
........
r61255 | georg.brandl | 2008-03-05 20:31:44 +0100 (Wed, 05 Mar 2008) | 2 lines
#2239: PYTHONPATH delimiter is os.pathsep.
........
r61256 | raymond.hettinger | 2008-03-05 21:59:58 +0100 (Wed, 05 Mar 2008) | 1 line
C implementation of itertools.permutations().
........
r61257 | raymond.hettinger | 2008-03-05 22:04:32 +0100 (Wed, 05 Mar 2008) | 1 line
Small code cleanup.
........
r61260 | martin.v.loewis | 2008-03-05 23:24:31 +0100 (Wed, 05 Mar 2008) | 2 lines
cd PCbuild only after deleting all pyc files.
........
r61261 | raymond.hettinger | 2008-03-06 02:15:52 +0100 (Thu, 06 Mar 2008) | 1 line
Add examples.
........
r61262 | andrew.kuchling | 2008-03-06 02:36:27 +0100 (Thu, 06 Mar 2008) | 1 line
Add two items
........
r61263 | georg.brandl | 2008-03-06 07:47:18 +0100 (Thu, 06 Mar 2008) | 2 lines
#1725737: ignore other VC directories other than CVS and SVN's too.
........
r61264 | martin.v.loewis | 2008-03-06 07:55:22 +0100 (Thu, 06 Mar 2008) | 4 lines
Patch #2232: os.tmpfile might fail on Windows if the user has no
permission to create files in the root directory.
Will backport to 2.5.
........
r61269 | georg.brandl | 2008-03-06 08:19:15 +0100 (Thu, 06 Mar 2008) | 2 lines
Expand on re.split behavior with captured expressions.
........
r61270 | georg.brandl | 2008-03-06 08:22:09 +0100 (Thu, 06 Mar 2008) | 2 lines
Little clarification of assignments.
........
r61271 | georg.brandl | 2008-03-06 08:31:34 +0100 (Thu, 06 Mar 2008) | 2 lines
Add isinstance/issubclass to tutorial.
........
r61272 | georg.brandl | 2008-03-06 08:34:52 +0100 (Thu, 06 Mar 2008) | 2 lines
Add missing NEWS entry for r61263.
........
r61273 | georg.brandl | 2008-03-06 08:41:16 +0100 (Thu, 06 Mar 2008) | 2 lines
#2225: return nonzero status code from py_compile if not all files could be compiled.
........
r61274 | georg.brandl | 2008-03-06 08:43:02 +0100 (Thu, 06 Mar 2008) | 2 lines
#2220: handle matching failure more gracefully.
........
r61275 | georg.brandl | 2008-03-06 08:45:52 +0100 (Thu, 06 Mar 2008) | 2 lines
Bug #2220: handle rlcompleter attribute match failure more gracefully.
........
r61278 | martin.v.loewis | 2008-03-06 14:49:47 +0100 (Thu, 06 Mar 2008) | 1 line
Rely on x64 platform configuration when building _bsddb on AMD64.
........
r61279 | martin.v.loewis | 2008-03-06 14:50:28 +0100 (Thu, 06 Mar 2008) | 1 line
Update db-4.4.20 build procedure.
........
r61285 | raymond.hettinger | 2008-03-06 21:52:01 +0100 (Thu, 06 Mar 2008) | 1 line
More tests.
........
r61286 | raymond.hettinger | 2008-03-06 23:51:36 +0100 (Thu, 06 Mar 2008) | 1 line
Issue 2246: itertools grouper object did not participate in GC (should be backported).
........
r61288 | raymond.hettinger | 2008-03-07 02:33:20 +0100 (Fri, 07 Mar 2008) | 1 line
Tweak recipes and tests
........
r61289 | jeffrey.yasskin | 2008-03-07 07:22:15 +0100 (Fri, 07 Mar 2008) | 5 lines
Progress on issue #1193577 by adding a polling .shutdown() method to
SocketServers. The core of the patch was written by Pedro Werneck, but any bugs
are mine. I've also rearranged the code for timeouts in order to avoid
interfering with the shutdown poll.
........
r61290 | nick.coghlan | 2008-03-07 15:13:28 +0100 (Fri, 07 Mar 2008) | 1 line
Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files)
........
r61298 | andrew.kuchling | 2008-03-07 22:09:23 +0100 (Fri, 07 Mar 2008) | 1 line
Grammar fix
........
r61303 | georg.brandl | 2008-03-08 10:54:06 +0100 (Sat, 08 Mar 2008) | 2 lines
#2253: fix continue vs. finally docs.
........
r61304 | marc-andre.lemburg | 2008-03-08 11:01:43 +0100 (Sat, 08 Mar 2008) | 3 lines
Add new name for Mandrake: Mandriva.
........
r61305 | georg.brandl | 2008-03-08 11:05:24 +0100 (Sat, 08 Mar 2008) | 2 lines
#1533486: fix types in refcount intro.
........
r61312 | facundo.batista | 2008-03-08 17:50:27 +0100 (Sat, 08 Mar 2008) | 5 lines
Issue 1106316. post_mortem()'s parameter, traceback, is now
optional: it defaults to the traceback of the exception that is currently
being handled.
........
r61313 | jeffrey.yasskin | 2008-03-08 19:26:54 +0100 (Sat, 08 Mar 2008) | 2 lines
Add tests for with and finally performance to pybench.
........
r61314 | jeffrey.yasskin | 2008-03-08 21:08:21 +0100 (Sat, 08 Mar 2008) | 2 lines
Fix pybench for pythons < 2.6, tested back to 2.3.
........
r61317 | jeffrey.yasskin | 2008-03-08 22:35:15 +0100 (Sat, 08 Mar 2008) | 3 lines
Well that was dumb. platform.python_implementation returns a function, not a
string.
........
r61329 | georg.brandl | 2008-03-09 16:11:39 +0100 (Sun, 09 Mar 2008) | 2 lines
#2249: document assertTrue and assertFalse.
........
r61332 | neal.norwitz | 2008-03-09 20:03:42 +0100 (Sun, 09 Mar 2008) | 4 lines
Introduce a lock to fix a race condition which caused an exception in the test.
Some buildbots were consistently failing (e.g., amd64).
Also remove a couple of semi-colons.
........
r61344 | raymond.hettinger | 2008-03-11 01:19:07 +0100 (Tue, 11 Mar 2008) | 1 line
Add recipe to docs.
........
r61350 | guido.van.rossum | 2008-03-11 22:18:06 +0100 (Tue, 11 Mar 2008) | 3 lines
Fix the overflows in expandtabs(). "This time for sure!"
(Exploit at request.)
........
r61351 | raymond.hettinger | 2008-03-11 22:37:46 +0100 (Tue, 11 Mar 2008) | 1 line
Improve docs for itemgetter(). Show that it works with slices.
........
r61363 | georg.brandl | 2008-03-13 08:15:56 +0100 (Thu, 13 Mar 2008) | 2 lines
#2265: fix example.
........
r61364 | georg.brandl | 2008-03-13 08:17:14 +0100 (Thu, 13 Mar 2008) | 2 lines
#2270: fix typo.
........
r61365 | georg.brandl | 2008-03-13 08:21:41 +0100 (Thu, 13 Mar 2008) | 2 lines
#1720705: add docs about import/threading interaction, wording by Nick.
........
r61366 | andrew.kuchling | 2008-03-13 12:07:35 +0100 (Thu, 13 Mar 2008) | 1 line
Add class decorators
........
r61367 | raymond.hettinger | 2008-03-13 17:43:17 +0100 (Thu, 13 Mar 2008) | 1 line
Add 2-to-3 support for the itertools moved to builtins or renamed.
........
r61368 | raymond.hettinger | 2008-03-13 17:43:59 +0100 (Thu, 13 Mar 2008) | 1 line
Consistent tense.
........
r61369 | raymond.hettinger | 2008-03-13 20:03:51 +0100 (Thu, 13 Mar 2008) | 1 line
Issue 2274: Add heapq.heappushpop().
........
r61370 | raymond.hettinger | 2008-03-13 20:33:34 +0100 (Thu, 13 Mar 2008) | 1 line
Simplify the nlargest() code using heappushpop().
........
r61371 | brett.cannon | 2008-03-13 21:27:00 +0100 (Thu, 13 Mar 2008) | 4 lines
Move test_thread over to unittest. Commits GHOP 237.
Thanks Benjamin Peterson for the patch.
........
r61372 | brett.cannon | 2008-03-13 21:33:10 +0100 (Thu, 13 Mar 2008) | 4 lines
Move test_tokenize to doctest.
Done as GHOP 238 by Josip Dzolonga.
........
r61373 | brett.cannon | 2008-03-13 21:47:41 +0100 (Thu, 13 Mar 2008) | 4 lines
Convert test_contains, test_crypt, and test_select to unittest.
Patch from GHOP 294 by David Marek.
........
r61374 | brett.cannon | 2008-03-13 22:02:16 +0100 (Thu, 13 Mar 2008) | 4 lines
Move test_gdbm to use unittest.
Closes issue #1960. Thanks Giampaolo Rodola.
........
r61375 | brett.cannon | 2008-03-13 22:09:28 +0100 (Thu, 13 Mar 2008) | 4 lines
Convert test_fcntl to unittest.
Closes issue #2055. Thanks Giampaolo Rodola.
........
r61376 | raymond.hettinger | 2008-03-14 06:03:44 +0100 (Fri, 14 Mar 2008) | 1 line
Leave heapreplace() unchanged.
........
r61378 | martin.v.loewis | 2008-03-14 14:56:09 +0100 (Fri, 14 Mar 2008) | 2 lines
Patch #2284: add -x64 option to rt.bat.
........
r61379 | martin.v.loewis | 2008-03-14 14:57:59 +0100 (Fri, 14 Mar 2008) | 2 lines
Use -x64 flag.
........
r61382 | brett.cannon | 2008-03-14 15:03:10 +0100 (Fri, 14 Mar 2008) | 2 lines
Remove a bad test.
........
r61383 | mark.dickinson | 2008-03-14 15:23:37 +0100 (Fri, 14 Mar 2008) | 9 lines
Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently
across platforms: it should now raise OverflowError on all
platforms. (Previously it raised OverflowError only on
non IEEE 754 platforms.)
Also fix the (already existing) test for this behaviour
so that it actually raises TestFailed instead of just
referencing it.
........
r61387 | thomas.heller | 2008-03-14 22:06:21 +0100 (Fri, 14 Mar 2008) | 1 line
Remove unneeded initializer.
........
r61388 | martin.v.loewis | 2008-03-14 22:19:28 +0100 (Fri, 14 Mar 2008) | 2 lines
Run debug version, cd to PCbuild.
........
r61392 | georg.brandl | 2008-03-15 00:10:34 +0100 (Sat, 15 Mar 2008) | 2 lines
Remove obsolete paragraph. #2288.
........
r61395 | georg.brandl | 2008-03-15 01:20:19 +0100 (Sat, 15 Mar 2008) | 2 lines
Fix lots of broken links in the docs, found by Sphinx' external link checker.
........
r61396 | skip.montanaro | 2008-03-15 03:32:49 +0100 (Sat, 15 Mar 2008) | 1 line
note that fork and forkpty raise OSError on failure
........
r61402 | skip.montanaro | 2008-03-15 17:04:45 +0100 (Sat, 15 Mar 2008) | 1 line
add %f format to datetime - issue 1158
........
r61403 | skip.montanaro | 2008-03-15 17:07:11 +0100 (Sat, 15 Mar 2008) | 2 lines
.
........
2008-03-15 21:07:10 -03:00
|
|
|
and is available from http://effbot.org/zone/console-index.htm.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
|
|
|
The Python curses module
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
Thy Python module is a fairly simple wrapper over the C functions provided by
|
|
|
|
curses; if you're already familiar with curses programming in C, it's really
|
|
|
|
easy to transfer that knowledge to Python. The biggest difference is that the
|
|
|
|
Python interface makes things simpler, by merging different C functions such as
|
|
|
|
:func:`addstr`, :func:`mvaddstr`, :func:`mvwaddstr`, into a single
|
|
|
|
:meth:`addstr` method. You'll see this covered in more detail later.
|
|
|
|
|
|
|
|
This HOWTO is simply an introduction to writing text-mode programs with curses
|
|
|
|
and Python. It doesn't attempt to be a complete guide to the curses API; for
|
|
|
|
that, see the Python library guide's section on ncurses, and the C manual pages
|
|
|
|
for ncurses. It will, however, give you the basic ideas.
|
|
|
|
|
|
|
|
|
|
|
|
Starting and ending a curses application
|
|
|
|
========================================
|
|
|
|
|
|
|
|
Before doing anything, curses must be initialized. This is done by calling the
|
|
|
|
:func:`initscr` function, which will determine the terminal type, send any
|
|
|
|
required setup codes to the terminal, and create various internal data
|
|
|
|
structures. If successful, :func:`initscr` returns a window object representing
|
|
|
|
the entire screen; this is usually called ``stdscr``, after the name of the
|
|
|
|
corresponding C variable. ::
|
|
|
|
|
|
|
|
import curses
|
|
|
|
stdscr = curses.initscr()
|
|
|
|
|
|
|
|
Usually curses applications turn off automatic echoing of keys to the screen, in
|
|
|
|
order to be able to read keys and only display them under certain circumstances.
|
|
|
|
This requires calling the :func:`noecho` function. ::
|
|
|
|
|
|
|
|
curses.noecho()
|
|
|
|
|
|
|
|
Applications will also commonly need to react to keys instantly, without
|
|
|
|
requiring the Enter key to be pressed; this is called cbreak mode, as opposed to
|
|
|
|
the usual buffered input mode. ::
|
|
|
|
|
|
|
|
curses.cbreak()
|
|
|
|
|
|
|
|
Terminals usually return special keys, such as the cursor keys or navigation
|
|
|
|
keys such as Page Up and Home, as a multibyte escape sequence. While you could
|
|
|
|
write your application to expect such sequences and process them accordingly,
|
|
|
|
curses can do it for you, returning a special value such as
|
|
|
|
:const:`curses.KEY_LEFT`. To get curses to do the job, you'll have to enable
|
|
|
|
keypad mode. ::
|
|
|
|
|
|
|
|
stdscr.keypad(1)
|
|
|
|
|
|
|
|
Terminating a curses application is much easier than starting one. You'll need
|
|
|
|
to call ::
|
|
|
|
|
|
|
|
curses.nocbreak(); stdscr.keypad(0); curses.echo()
|
|
|
|
|
|
|
|
to reverse the curses-friendly terminal settings. Then call the :func:`endwin`
|
|
|
|
function to restore the terminal to its original operating mode. ::
|
|
|
|
|
|
|
|
curses.endwin()
|
|
|
|
|
|
|
|
A common problem when debugging a curses application is to get your terminal
|
|
|
|
messed up when the application dies without restoring the terminal to its
|
|
|
|
previous state. In Python this commonly happens when your code is buggy and
|
|
|
|
raises an uncaught exception. Keys are no longer be echoed to the screen when
|
|
|
|
you type them, for example, which makes using the shell difficult.
|
|
|
|
|
|
|
|
In Python you can avoid these complications and make debugging much easier by
|
|
|
|
importing the module :mod:`curses.wrapper`. It supplies a :func:`wrapper`
|
|
|
|
function that takes a callable. It does the initializations described above,
|
|
|
|
and also initializes colors if color support is present. It then runs your
|
|
|
|
provided callable and finally deinitializes appropriately. The callable is
|
|
|
|
called inside a try-catch clause which catches exceptions, performs curses
|
|
|
|
deinitialization, and then passes the exception upwards. Thus, your terminal
|
|
|
|
won't be left in a funny state on exception.
|
|
|
|
|
|
|
|
|
|
|
|
Windows and Pads
|
|
|
|
================
|
|
|
|
|
|
|
|
Windows are the basic abstraction in curses. A window object represents a
|
|
|
|
rectangular area of the screen, and supports various methods to display text,
|
|
|
|
erase it, allow the user to input strings, and so forth.
|
|
|
|
|
|
|
|
The ``stdscr`` object returned by the :func:`initscr` function is a window
|
|
|
|
object that covers the entire screen. Many programs may need only this single
|
|
|
|
window, but you might wish to divide the screen into smaller windows, in order
|
|
|
|
to redraw or clear them separately. The :func:`newwin` function creates a new
|
|
|
|
window of a given size, returning the new window object. ::
|
|
|
|
|
|
|
|
begin_x = 20 ; begin_y = 7
|
|
|
|
height = 5 ; width = 40
|
|
|
|
win = curses.newwin(height, width, begin_y, begin_x)
|
|
|
|
|
|
|
|
A word about the coordinate system used in curses: coordinates are always passed
|
|
|
|
in the order *y,x*, and the top-left corner of a window is coordinate (0,0).
|
|
|
|
This breaks a common convention for handling coordinates, where the *x*
|
|
|
|
coordinate usually comes first. This is an unfortunate difference from most
|
|
|
|
other computer applications, but it's been part of curses since it was first
|
|
|
|
written, and it's too late to change things now.
|
|
|
|
|
|
|
|
When you call a method to display or erase text, the effect doesn't immediately
|
|
|
|
show up on the display. This is because curses was originally written with slow
|
|
|
|
300-baud terminal connections in mind; with these terminals, minimizing the time
|
|
|
|
required to redraw the screen is very important. This lets curses accumulate
|
|
|
|
changes to the screen, and display them in the most efficient manner. For
|
|
|
|
example, if your program displays some characters in a window, and then clears
|
|
|
|
the window, there's no need to send the original characters because they'd never
|
|
|
|
be visible.
|
|
|
|
|
|
|
|
Accordingly, curses requires that you explicitly tell it to redraw windows,
|
|
|
|
using the :func:`refresh` method of window objects. In practice, this doesn't
|
|
|
|
really complicate programming with curses much. Most programs go into a flurry
|
|
|
|
of activity, and then pause waiting for a keypress or some other action on the
|
|
|
|
part of the user. All you have to do is to be sure that the screen has been
|
|
|
|
redrawn before pausing to wait for user input, by simply calling
|
|
|
|
``stdscr.refresh()`` or the :func:`refresh` method of some other relevant
|
|
|
|
window.
|
|
|
|
|
|
|
|
A pad is a special case of a window; it can be larger than the actual display
|
|
|
|
screen, and only a portion of it displayed at a time. Creating a pad simply
|
|
|
|
requires the pad's height and width, while refreshing a pad requires giving the
|
|
|
|
coordinates of the on-screen area where a subsection of the pad will be
|
|
|
|
displayed. ::
|
|
|
|
|
|
|
|
pad = curses.newpad(100, 100)
|
|
|
|
# These loops fill the pad with letters; this is
|
|
|
|
# explained in the next section
|
|
|
|
for y in range(0, 100):
|
|
|
|
for x in range(0, 100):
|
|
|
|
try: pad.addch(y,x, ord('a') + (x*x+y*y) % 26 )
|
|
|
|
except curses.error: pass
|
|
|
|
|
|
|
|
# Displays a section of the pad in the middle of the screen
|
|
|
|
pad.refresh( 0,0, 5,5, 20,75)
|
|
|
|
|
|
|
|
The :func:`refresh` call displays a section of the pad in the rectangle
|
|
|
|
extending from coordinate (5,5) to coordinate (20,75) on the screen; the upper
|
|
|
|
left corner of the displayed section is coordinate (0,0) on the pad. Beyond
|
|
|
|
that difference, pads are exactly like ordinary windows and support the same
|
|
|
|
methods.
|
|
|
|
|
|
|
|
If you have multiple windows and pads on screen there is a more efficient way to
|
|
|
|
go, which will prevent annoying screen flicker at refresh time. Use the
|
|
|
|
:meth:`noutrefresh` method of each window to update the data structure
|
|
|
|
representing the desired state of the screen; then change the physical screen to
|
|
|
|
match the desired state in one go with the function :func:`doupdate`. The
|
|
|
|
normal :meth:`refresh` method calls :func:`doupdate` as its last act.
|
|
|
|
|
|
|
|
|
|
|
|
Displaying Text
|
|
|
|
===============
|
|
|
|
|
|
|
|
From a C programmer's point of view, curses may sometimes look like a twisty
|
|
|
|
maze of functions, all subtly different. For example, :func:`addstr` displays a
|
|
|
|
string at the current cursor location in the ``stdscr`` window, while
|
|
|
|
:func:`mvaddstr` moves to a given y,x coordinate first before displaying the
|
|
|
|
string. :func:`waddstr` is just like :func:`addstr`, but allows specifying a
|
|
|
|
window to use, instead of using ``stdscr`` by default. :func:`mvwaddstr` follows
|
|
|
|
similarly.
|
|
|
|
|
|
|
|
Fortunately the Python interface hides all these details; ``stdscr`` is a window
|
|
|
|
object like any other, and methods like :func:`addstr` accept multiple argument
|
|
|
|
forms. Usually there are four different forms.
|
|
|
|
|
|
|
|
+---------------------------------+-----------------------------------------------+
|
|
|
|
| Form | Description |
|
|
|
|
+=================================+===============================================+
|
|
|
|
| *str* or *ch* | Display the string *str* or character *ch* at |
|
|
|
|
| | the current position |
|
|
|
|
+---------------------------------+-----------------------------------------------+
|
|
|
|
| *str* or *ch*, *attr* | Display the string *str* or character *ch*, |
|
|
|
|
| | using attribute *attr* at the current |
|
|
|
|
| | position |
|
|
|
|
+---------------------------------+-----------------------------------------------+
|
|
|
|
| *y*, *x*, *str* or *ch* | Move to position *y,x* within the window, and |
|
|
|
|
| | display *str* or *ch* |
|
|
|
|
+---------------------------------+-----------------------------------------------+
|
|
|
|
| *y*, *x*, *str* or *ch*, *attr* | Move to position *y,x* within the window, and |
|
|
|
|
| | display *str* or *ch*, using attribute *attr* |
|
|
|
|
+---------------------------------+-----------------------------------------------+
|
|
|
|
|
|
|
|
Attributes allow displaying text in highlighted forms, such as in boldface,
|
|
|
|
underline, reverse code, or in color. They'll be explained in more detail in
|
|
|
|
the next subsection.
|
|
|
|
|
|
|
|
The :func:`addstr` function takes a Python string as the value to be displayed,
|
|
|
|
while the :func:`addch` functions take a character, which can be either a Python
|
|
|
|
string of length 1 or an integer. If it's a string, you're limited to
|
|
|
|
displaying characters between 0 and 255. SVr4 curses provides constants for
|
|
|
|
extension characters; these constants are integers greater than 255. For
|
|
|
|
example, :const:`ACS_PLMINUS` is a +/- symbol, and :const:`ACS_ULCORNER` is the
|
|
|
|
upper left corner of a box (handy for drawing borders).
|
|
|
|
|
|
|
|
Windows remember where the cursor was left after the last operation, so if you
|
|
|
|
leave out the *y,x* coordinates, the string or character will be displayed
|
|
|
|
wherever the last operation left off. You can also move the cursor with the
|
|
|
|
``move(y,x)`` method. Because some terminals always display a flashing cursor,
|
|
|
|
you may want to ensure that the cursor is positioned in some location where it
|
|
|
|
won't be distracting; it can be confusing to have the cursor blinking at some
|
|
|
|
apparently random location.
|
|
|
|
|
|
|
|
If your application doesn't need a blinking cursor at all, you can call
|
|
|
|
``curs_set(0)`` to make it invisible. Equivalently, and for compatibility with
|
|
|
|
older curses versions, there's a ``leaveok(bool)`` function. When *bool* is
|
|
|
|
true, the curses library will attempt to suppress the flashing cursor, and you
|
|
|
|
won't need to worry about leaving it in odd locations.
|
|
|
|
|
|
|
|
|
|
|
|
Attributes and Color
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
Characters can be displayed in different ways. Status lines in a text-based
|
|
|
|
application are commonly shown in reverse video; a text viewer may need to
|
|
|
|
highlight certain words. curses supports this by allowing you to specify an
|
|
|
|
attribute for each cell on the screen.
|
|
|
|
|
|
|
|
An attribute is a integer, each bit representing a different attribute. You can
|
|
|
|
try to display text with multiple attribute bits set, but curses doesn't
|
|
|
|
guarantee that all the possible combinations are available, or that they're all
|
|
|
|
visually distinct. That depends on the ability of the terminal being used, so
|
|
|
|
it's safest to stick to the most commonly available attributes, listed here.
|
|
|
|
|
|
|
|
+----------------------+--------------------------------------+
|
|
|
|
| Attribute | Description |
|
|
|
|
+======================+======================================+
|
|
|
|
| :const:`A_BLINK` | Blinking text |
|
|
|
|
+----------------------+--------------------------------------+
|
|
|
|
| :const:`A_BOLD` | Extra bright or bold text |
|
|
|
|
+----------------------+--------------------------------------+
|
|
|
|
| :const:`A_DIM` | Half bright text |
|
|
|
|
+----------------------+--------------------------------------+
|
|
|
|
| :const:`A_REVERSE` | Reverse-video text |
|
|
|
|
+----------------------+--------------------------------------+
|
|
|
|
| :const:`A_STANDOUT` | The best highlighting mode available |
|
|
|
|
+----------------------+--------------------------------------+
|
|
|
|
| :const:`A_UNDERLINE` | Underlined text |
|
|
|
|
+----------------------+--------------------------------------+
|
|
|
|
|
|
|
|
So, to display a reverse-video status line on the top line of the screen, you
|
|
|
|
could code::
|
|
|
|
|
|
|
|
stdscr.addstr(0, 0, "Current mode: Typing mode",
|
2009-01-03 17:26:05 -04:00
|
|
|
curses.A_REVERSE)
|
2007-08-15 11:28:22 -03:00
|
|
|
stdscr.refresh()
|
|
|
|
|
|
|
|
The curses library also supports color on those terminals that provide it, The
|
|
|
|
most common such terminal is probably the Linux console, followed by color
|
|
|
|
xterms.
|
|
|
|
|
|
|
|
To use color, you must call the :func:`start_color` function soon after calling
|
|
|
|
:func:`initscr`, to initialize the default color set (the
|
|
|
|
:func:`curses.wrapper.wrapper` function does this automatically). Once that's
|
|
|
|
done, the :func:`has_colors` function returns TRUE if the terminal in use can
|
|
|
|
actually display color. (Note: curses uses the American spelling 'color',
|
|
|
|
instead of the Canadian/British spelling 'colour'. If you're used to the
|
|
|
|
British spelling, you'll have to resign yourself to misspelling it for the sake
|
|
|
|
of these functions.)
|
|
|
|
|
|
|
|
The curses library maintains a finite number of color pairs, containing a
|
|
|
|
foreground (or text) color and a background color. You can get the attribute
|
|
|
|
value corresponding to a color pair with the :func:`color_pair` function; this
|
|
|
|
can be bitwise-OR'ed with other attributes such as :const:`A_REVERSE`, but
|
|
|
|
again, such combinations are not guaranteed to work on all terminals.
|
|
|
|
|
|
|
|
An example, which displays a line of text using color pair 1::
|
|
|
|
|
|
|
|
stdscr.addstr( "Pretty text", curses.color_pair(1) )
|
|
|
|
stdscr.refresh()
|
|
|
|
|
|
|
|
As I said before, a color pair consists of a foreground and background color.
|
|
|
|
:func:`start_color` initializes 8 basic colors when it activates color mode.
|
|
|
|
They are: 0:black, 1:red, 2:green, 3:yellow, 4:blue, 5:magenta, 6:cyan, and
|
|
|
|
7:white. The curses module defines named constants for each of these colors:
|
|
|
|
:const:`curses.COLOR_BLACK`, :const:`curses.COLOR_RED`, and so forth.
|
|
|
|
|
|
|
|
The ``init_pair(n, f, b)`` function changes the definition of color pair *n*, to
|
|
|
|
foreground color f and background color b. Color pair 0 is hard-wired to white
|
|
|
|
on black, and cannot be changed.
|
|
|
|
|
|
|
|
Let's put all this together. To change color 1 to red text on a white
|
|
|
|
background, you would call::
|
|
|
|
|
|
|
|
curses.init_pair(1, curses.COLOR_RED, curses.COLOR_WHITE)
|
|
|
|
|
|
|
|
When you change a color pair, any text already displayed using that color pair
|
|
|
|
will change to the new colors. You can also display new text in this color
|
|
|
|
with::
|
|
|
|
|
|
|
|
stdscr.addstr(0,0, "RED ALERT!", curses.color_pair(1) )
|
|
|
|
|
|
|
|
Very fancy terminals can change the definitions of the actual colors to a given
|
|
|
|
RGB value. This lets you change color 1, which is usually red, to purple or
|
|
|
|
blue or any other color you like. Unfortunately, the Linux console doesn't
|
|
|
|
support this, so I'm unable to try it out, and can't provide any examples. You
|
|
|
|
can check if your terminal can do this by calling :func:`can_change_color`,
|
|
|
|
which returns TRUE if the capability is there. If you're lucky enough to have
|
|
|
|
such a talented terminal, consult your system's man pages for more information.
|
|
|
|
|
|
|
|
|
|
|
|
User Input
|
|
|
|
==========
|
|
|
|
|
|
|
|
The curses library itself offers only very simple input mechanisms. Python's
|
|
|
|
support adds a text-input widget that makes up some of the lack.
|
|
|
|
|
|
|
|
The most common way to get input to a window is to use its :meth:`getch` method.
|
|
|
|
:meth:`getch` pauses and waits for the user to hit a key, displaying it if
|
|
|
|
:func:`echo` has been called earlier. You can optionally specify a coordinate
|
|
|
|
to which the cursor should be moved before pausing.
|
|
|
|
|
|
|
|
It's possible to change this behavior with the method :meth:`nodelay`. After
|
|
|
|
``nodelay(1)``, :meth:`getch` for the window becomes non-blocking and returns
|
|
|
|
``curses.ERR`` (a value of -1) when no input is ready. There's also a
|
|
|
|
:func:`halfdelay` function, which can be used to (in effect) set a timer on each
|
Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59987 | raymond.hettinger | 2008-01-15 21:52:42 +0100 (Tue, 15 Jan 2008) | 1 line
Refactor if/elif chain for clarity and speed. Remove dependency on subclasses having to implement _empty and _full.
........
r59988 | raymond.hettinger | 2008-01-15 22:22:47 +0100 (Tue, 15 Jan 2008) | 1 line
Fix-up half-written paragraph in the docs
........
r59989 | amaury.forgeotdarc | 2008-01-15 22:25:11 +0100 (Tue, 15 Jan 2008) | 3 lines
test_doctest fails since r59984.
Not sure if these are the correct values, but save_stdout has to be set before its usage...
........
r59992 | andrew.kuchling | 2008-01-16 01:32:03 +0100 (Wed, 16 Jan 2008) | 1 line
Docstring typos
........
r59993 | andrew.kuchling | 2008-01-16 04:17:25 +0100 (Wed, 16 Jan 2008) | 1 line
Add PEP 3141 section
........
r59998 | andrew.kuchling | 2008-01-16 14:01:51 +0100 (Wed, 16 Jan 2008) | 1 line
Markup fix
........
r59999 | georg.brandl | 2008-01-16 17:56:29 +0100 (Wed, 16 Jan 2008) | 2 lines
Fix MSDN library URL. (#1854)
........
r60006 | georg.brandl | 2008-01-16 21:27:56 +0100 (Wed, 16 Jan 2008) | 3 lines
Add Python-specific content to Doc dir. Update configuration file
to work with the newest Sphinx.
........
r60007 | georg.brandl | 2008-01-16 21:29:00 +0100 (Wed, 16 Jan 2008) | 2 lines
Doc build should work with 2.4 now.
........
r60009 | raymond.hettinger | 2008-01-17 00:38:16 +0100 (Thu, 17 Jan 2008) | 1 line
Minor wordsmithing.
........
r60010 | raymond.hettinger | 2008-01-17 00:40:45 +0100 (Thu, 17 Jan 2008) | 1 line
Add queues will alternative fetch orders (priority based and stack based).
........
r60011 | raymond.hettinger | 2008-01-17 00:49:35 +0100 (Thu, 17 Jan 2008) | 1 line
Add news entry.
........
r60013 | raymond.hettinger | 2008-01-17 04:02:14 +0100 (Thu, 17 Jan 2008) | 1 line
Make starmap() match its pure python definition and accept any itertable input (not just tuples).
........
r60015 | gregory.p.smith | 2008-01-17 08:43:20 +0100 (Thu, 17 Jan 2008) | 3 lines
Comply with RFC 3207.
Fixes issue 829951 - http://bugs.python.org/issue829951
........
r60018 | gregory.p.smith | 2008-01-17 09:03:17 +0100 (Thu, 17 Jan 2008) | 2 lines
entry for r60015
........
r60019 | raymond.hettinger | 2008-01-17 09:07:05 +0100 (Thu, 17 Jan 2008) | 1 line
Note versionadded.
........
r60020 | gregory.p.smith | 2008-01-17 09:35:49 +0100 (Thu, 17 Jan 2008) | 8 lines
Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339
- Factor out the duplication of EHLO/HELO in login() and sendmail() to
a new function, ehlo_or_helo_if_needed().
- Use ehlo_or_helo_if_needed() in starttls()
- Check for the starttls exception in starttls() in the same way as
login() checks for the auth extension.
Contributed by Bill Fenner.
........
r60021 | andrew.kuchling | 2008-01-17 13:00:15 +0100 (Thu, 17 Jan 2008) | 1 line
Revise 3141 section a bit; add some Windows items
........
r60022 | brett.cannon | 2008-01-17 19:45:10 +0100 (Thu, 17 Jan 2008) | 2 lines
Fix a function pointer declaration to silence the compiler.
........
r60024 | raymond.hettinger | 2008-01-17 20:31:38 +0100 (Thu, 17 Jan 2008) | 1 line
Issue #1861: Add read-only attribute listing upcoming events in the order they will be run.
........
r60025 | andrew.kuchling | 2008-01-17 20:49:24 +0100 (Thu, 17 Jan 2008) | 1 line
Correction from Jordan Lewis: halfdelay() uses tenths of a second, not milliseconds
........
r60026 | raymond.hettinger | 2008-01-17 23:27:49 +0100 (Thu, 17 Jan 2008) | 1 line
Add advice on choosing between scheduler and threading.Timer().
........
r60028 | christian.heimes | 2008-01-18 00:01:44 +0100 (Fri, 18 Jan 2008) | 2 lines
Updated new property syntax. An elaborate example for subclassing and the getter was missing.
Added comment about VS 2008 and PGO builds.
........
r60029 | raymond.hettinger | 2008-01-18 00:32:01 +0100 (Fri, 18 Jan 2008) | 1 line
Fix-up Timer() example.
........
r60030 | raymond.hettinger | 2008-01-18 00:56:56 +0100 (Fri, 18 Jan 2008) | 1 line
Fix markup
........
r60031 | raymond.hettinger | 2008-01-18 01:10:42 +0100 (Fri, 18 Jan 2008) | 1 line
clearcache() needs to remove the dict as well as clear it.
........
r60033 | andrew.kuchling | 2008-01-18 03:26:16 +0100 (Fri, 18 Jan 2008) | 1 line
Bump verson
........
r60034 | andrew.kuchling | 2008-01-18 03:42:52 +0100 (Fri, 18 Jan 2008) | 1 line
Typo fix
........
r60035 | christian.heimes | 2008-01-18 08:30:20 +0100 (Fri, 18 Jan 2008) | 3 lines
Coverity issue CID #197
var_decl: Declared variable "stm" without initializer
ninit_use_in_call: Using uninitialized value "stm" (field "stm".tm_zone uninitialized) in call to function "mktime"
........
r60036 | christian.heimes | 2008-01-18 08:45:30 +0100 (Fri, 18 Jan 2008) | 11 lines
Coverity issue CID #167
Event alloc_fn: Called allocation function "metacompile" [model]
Event var_assign: Assigned variable "gr" to storage returned from "metacompile"
gr = metacompile(n);
Event pass_arg: Variable "gr" not freed or pointed-to in function "maketables" [model]
g = maketables(gr);
translatelabels(g);
addfirstsets(g);
Event leaked_storage: Returned without freeing storage "gr"
return g;
........
r60038 | christian.heimes | 2008-01-18 09:04:57 +0100 (Fri, 18 Jan 2008) | 3 lines
Coverity issue CID #182
size_error: Allocating 1 bytes to pointer "children", which needs at least 4 bytes
........
r60041 | christian.heimes | 2008-01-18 09:47:59 +0100 (Fri, 18 Jan 2008) | 4 lines
Coverity issue CID #169
local_ptr_assign_local: Assigning address of stack variable "namebuf" to pointer "filename"
out_of_scope: Variable "namebuf" goes out of scope
use_invalid: Used "filename" pointing to out-of-scope variable "namebuf"
........
r60042 | christian.heimes | 2008-01-18 09:53:45 +0100 (Fri, 18 Jan 2008) | 2 lines
Coverity CID #168
leaked_storage: Returned without freeing storage "fp"
........
2008-01-18 05:56:22 -04:00
|
|
|
:meth:`getch`; if no input becomes available within a specified
|
|
|
|
delay (measured in tenths of a second), curses raises an exception.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
The :meth:`getch` method returns an integer; if it's between 0 and 255, it
|
|
|
|
represents the ASCII code of the key pressed. Values greater than 255 are
|
|
|
|
special keys such as Page Up, Home, or the cursor keys. You can compare the
|
|
|
|
value returned to constants such as :const:`curses.KEY_PPAGE`,
|
|
|
|
:const:`curses.KEY_HOME`, or :const:`curses.KEY_LEFT`. Usually the main loop of
|
|
|
|
your program will look something like this::
|
|
|
|
|
2007-09-09 21:49:57 -03:00
|
|
|
while True:
|
2007-08-15 11:28:22 -03:00
|
|
|
c = stdscr.getch()
|
|
|
|
if c == ord('p'): PrintDocument()
|
|
|
|
elif c == ord('q'): break # Exit the while()
|
|
|
|
elif c == curses.KEY_HOME: x = y = 0
|
|
|
|
|
|
|
|
The :mod:`curses.ascii` module supplies ASCII class membership functions that
|
|
|
|
take either integer or 1-character-string arguments; these may be useful in
|
|
|
|
writing more readable tests for your command interpreters. It also supplies
|
|
|
|
conversion functions that take either integer or 1-character-string arguments
|
|
|
|
and return the same type. For example, :func:`curses.ascii.ctrl` returns the
|
|
|
|
control character corresponding to its argument.
|
|
|
|
|
|
|
|
There's also a method to retrieve an entire string, :const:`getstr()`. It isn't
|
|
|
|
used very often, because its functionality is quite limited; the only editing
|
|
|
|
keys available are the backspace key and the Enter key, which terminates the
|
|
|
|
string. It can optionally be limited to a fixed number of characters. ::
|
|
|
|
|
|
|
|
curses.echo() # Enable echoing of characters
|
|
|
|
|
2009-01-03 17:18:54 -04:00
|
|
|
# Get a 15-character string, with the cursor on the top line
|
|
|
|
s = stdscr.getstr(0,0, 15)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
The Python :mod:`curses.textpad` module supplies something better. With it, you
|
|
|
|
can turn a window into a text box that supports an Emacs-like set of
|
|
|
|
keybindings. Various methods of :class:`Textbox` class support editing with
|
|
|
|
input validation and gathering the edit results either with or without trailing
|
|
|
|
spaces. See the library documentation on :mod:`curses.textpad` for the
|
|
|
|
details.
|
|
|
|
|
|
|
|
|
|
|
|
For More Information
|
|
|
|
====================
|
|
|
|
|
|
|
|
This HOWTO didn't cover some advanced topics, such as screen-scraping or
|
|
|
|
capturing mouse events from an xterm instance. But the Python library page for
|
|
|
|
the curses modules is now pretty complete. You should browse it next.
|
|
|
|
|
|
|
|
If you're in doubt about the detailed behavior of any of the ncurses entry
|
|
|
|
points, consult the manual pages for your curses implementation, whether it's
|
|
|
|
ncurses or a proprietary Unix vendor's. The manual pages will document any
|
|
|
|
quirks, and provide complete lists of all the functions, attributes, and
|
|
|
|
:const:`ACS_\*` characters available to you.
|
|
|
|
|
|
|
|
Because the curses API is so large, some functions aren't supported in the
|
|
|
|
Python interface, not because they're difficult to implement, but because no one
|
|
|
|
has needed them yet. Feel free to add them and then submit a patch. Also, we
|
Merged revisions 69998-69999,70002,70022-70023,70025-70026,70061,70086,70145,70171,70183,70188,70235,70244,70275,70281 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r69998 | benjamin.peterson | 2009-02-26 13:04:40 -0600 (Thu, 26 Feb 2009) | 1 line
the startship is rather outdated now
........
r69999 | benjamin.peterson | 2009-02-26 13:05:59 -0600 (Thu, 26 Feb 2009) | 1 line
comma
........
r70002 | andrew.kuchling | 2009-02-26 16:34:30 -0600 (Thu, 26 Feb 2009) | 1 line
The curses panel library is now supported
........
r70022 | georg.brandl | 2009-02-27 10:23:18 -0600 (Fri, 27 Feb 2009) | 1 line
#5361: fix typo.
........
r70023 | georg.brandl | 2009-02-27 10:39:26 -0600 (Fri, 27 Feb 2009) | 1 line
#5363: fix cmpfiles() docs. Another instance where a prose description is twice as long as the code.
........
r70025 | georg.brandl | 2009-02-27 10:52:55 -0600 (Fri, 27 Feb 2009) | 1 line
#5344: fix punctuation.
........
r70026 | georg.brandl | 2009-02-27 10:59:03 -0600 (Fri, 27 Feb 2009) | 1 line
#5365: add quick look conversion table for different time representations.
........
r70061 | hirokazu.yamamoto | 2009-02-28 09:24:00 -0600 (Sat, 28 Feb 2009) | 1 line
Binary flag is needed on windows.
........
r70086 | benjamin.peterson | 2009-03-01 21:35:12 -0600 (Sun, 01 Mar 2009) | 1 line
fix a silly problem of caching gone wrong #5401
........
r70145 | benjamin.peterson | 2009-03-03 16:51:57 -0600 (Tue, 03 Mar 2009) | 1 line
making the writing more formal
........
r70171 | facundo.batista | 2009-03-04 15:18:17 -0600 (Wed, 04 Mar 2009) | 3 lines
Fixed a typo.
........
r70183 | benjamin.peterson | 2009-03-04 18:17:57 -0600 (Wed, 04 Mar 2009) | 1 line
add example
........
r70188 | hirokazu.yamamoto | 2009-03-05 03:34:14 -0600 (Thu, 05 Mar 2009) | 1 line
Fixed memory leak on failure.
........
r70235 | benjamin.peterson | 2009-03-07 18:21:17 -0600 (Sat, 07 Mar 2009) | 1 line
fix funky indentation
........
r70244 | martin.v.loewis | 2009-03-08 09:06:19 -0500 (Sun, 08 Mar 2009) | 2 lines
Add Chris Withers.
........
r70275 | georg.brandl | 2009-03-09 11:35:48 -0500 (Mon, 09 Mar 2009) | 2 lines
Add missing space.
........
r70281 | benjamin.peterson | 2009-03-09 15:38:56 -0500 (Mon, 09 Mar 2009) | 1 line
gzip and bz2 are context managers
........
2009-03-09 18:04:33 -03:00
|
|
|
don't yet have support for the menu library associated with
|
2007-08-15 11:28:22 -03:00
|
|
|
ncurses; feel free to add that.
|
|
|
|
|
|
|
|
If you write an interesting little program, feel free to contribute it as
|
|
|
|
another demo. We can always use more of them!
|
|
|
|
|
Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61239 | andrew.kuchling | 2008-03-05 01:44:41 +0100 (Wed, 05 Mar 2008) | 1 line
Add more items; add fragmentary notes
........
r61240 | amaury.forgeotdarc | 2008-03-05 02:50:33 +0100 (Wed, 05 Mar 2008) | 13 lines
Issue#2238: some syntax errors from *args or **kwargs expressions
would give bogus error messages, because of untested exceptions::
>>> f(**g(1=2))
XXX undetected error
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'int' object is not iterable
instead of the expected SyntaxError: keyword can't be an expression
Will backport.
........
r61241 | neal.norwitz | 2008-03-05 06:10:48 +0100 (Wed, 05 Mar 2008) | 3 lines
Remove the files/dirs after closing the DB so the tests work on Windows.
Patch from Trent Nelson. Also simplified removing a file by using test_support.
........
r61242 | neal.norwitz | 2008-03-05 06:14:18 +0100 (Wed, 05 Mar 2008) | 3 lines
Get this test to pass even when there is no sound card in the system.
Patch from Trent Nelson. (I can't test this.)
........
r61243 | neal.norwitz | 2008-03-05 06:20:44 +0100 (Wed, 05 Mar 2008) | 3 lines
Catch OSError when trying to remove a file in case removal fails. This
should prevent a failure in tearDown masking any real test failure.
........
r61244 | neal.norwitz | 2008-03-05 06:38:06 +0100 (Wed, 05 Mar 2008) | 5 lines
Make the timeout longer to give slow machines a chance to pass the test
before timing out. This doesn't change the duration of the test under
normal circumstances. This is targetted at fixing the spurious failures
on the FreeBSD buildbot primarily.
........
r61245 | neal.norwitz | 2008-03-05 06:49:03 +0100 (Wed, 05 Mar 2008) | 1 line
Tabs -> spaces
........
r61246 | neal.norwitz | 2008-03-05 06:50:20 +0100 (Wed, 05 Mar 2008) | 1 line
Use -u urlfetch to run more tests
........
r61247 | neal.norwitz | 2008-03-05 06:51:20 +0100 (Wed, 05 Mar 2008) | 1 line
test_smtplib sometimes reports leaks too, suppress it
........
r61248 | jeffrey.yasskin | 2008-03-05 07:19:56 +0100 (Wed, 05 Mar 2008) | 5 lines
Fix test_socketserver on Windows after r61099 added several signal.alarm()
calls (which don't exist on non-Unix platforms).
Thanks to Trent Nelson for the report and patch.
........
r61249 | georg.brandl | 2008-03-05 08:10:35 +0100 (Wed, 05 Mar 2008) | 2 lines
Fix some rst.
........
r61252 | thomas.heller | 2008-03-05 15:53:39 +0100 (Wed, 05 Mar 2008) | 2 lines
News entry for yesterdays commit.
........
r61253 | thomas.heller | 2008-03-05 16:34:29 +0100 (Wed, 05 Mar 2008) | 3 lines
Issue 1872: Changed the struct module typecode from 't' to '?', for
compatibility with PEP3118.
........
r61254 | skip.montanaro | 2008-03-05 17:41:09 +0100 (Wed, 05 Mar 2008) | 4 lines
Elaborate on the role of the altinstall target when installing multiple
versions.
........
r61255 | georg.brandl | 2008-03-05 20:31:44 +0100 (Wed, 05 Mar 2008) | 2 lines
#2239: PYTHONPATH delimiter is os.pathsep.
........
r61256 | raymond.hettinger | 2008-03-05 21:59:58 +0100 (Wed, 05 Mar 2008) | 1 line
C implementation of itertools.permutations().
........
r61257 | raymond.hettinger | 2008-03-05 22:04:32 +0100 (Wed, 05 Mar 2008) | 1 line
Small code cleanup.
........
r61260 | martin.v.loewis | 2008-03-05 23:24:31 +0100 (Wed, 05 Mar 2008) | 2 lines
cd PCbuild only after deleting all pyc files.
........
r61261 | raymond.hettinger | 2008-03-06 02:15:52 +0100 (Thu, 06 Mar 2008) | 1 line
Add examples.
........
r61262 | andrew.kuchling | 2008-03-06 02:36:27 +0100 (Thu, 06 Mar 2008) | 1 line
Add two items
........
r61263 | georg.brandl | 2008-03-06 07:47:18 +0100 (Thu, 06 Mar 2008) | 2 lines
#1725737: ignore other VC directories other than CVS and SVN's too.
........
r61264 | martin.v.loewis | 2008-03-06 07:55:22 +0100 (Thu, 06 Mar 2008) | 4 lines
Patch #2232: os.tmpfile might fail on Windows if the user has no
permission to create files in the root directory.
Will backport to 2.5.
........
r61269 | georg.brandl | 2008-03-06 08:19:15 +0100 (Thu, 06 Mar 2008) | 2 lines
Expand on re.split behavior with captured expressions.
........
r61270 | georg.brandl | 2008-03-06 08:22:09 +0100 (Thu, 06 Mar 2008) | 2 lines
Little clarification of assignments.
........
r61271 | georg.brandl | 2008-03-06 08:31:34 +0100 (Thu, 06 Mar 2008) | 2 lines
Add isinstance/issubclass to tutorial.
........
r61272 | georg.brandl | 2008-03-06 08:34:52 +0100 (Thu, 06 Mar 2008) | 2 lines
Add missing NEWS entry for r61263.
........
r61273 | georg.brandl | 2008-03-06 08:41:16 +0100 (Thu, 06 Mar 2008) | 2 lines
#2225: return nonzero status code from py_compile if not all files could be compiled.
........
r61274 | georg.brandl | 2008-03-06 08:43:02 +0100 (Thu, 06 Mar 2008) | 2 lines
#2220: handle matching failure more gracefully.
........
r61275 | georg.brandl | 2008-03-06 08:45:52 +0100 (Thu, 06 Mar 2008) | 2 lines
Bug #2220: handle rlcompleter attribute match failure more gracefully.
........
r61278 | martin.v.loewis | 2008-03-06 14:49:47 +0100 (Thu, 06 Mar 2008) | 1 line
Rely on x64 platform configuration when building _bsddb on AMD64.
........
r61279 | martin.v.loewis | 2008-03-06 14:50:28 +0100 (Thu, 06 Mar 2008) | 1 line
Update db-4.4.20 build procedure.
........
r61285 | raymond.hettinger | 2008-03-06 21:52:01 +0100 (Thu, 06 Mar 2008) | 1 line
More tests.
........
r61286 | raymond.hettinger | 2008-03-06 23:51:36 +0100 (Thu, 06 Mar 2008) | 1 line
Issue 2246: itertools grouper object did not participate in GC (should be backported).
........
r61288 | raymond.hettinger | 2008-03-07 02:33:20 +0100 (Fri, 07 Mar 2008) | 1 line
Tweak recipes and tests
........
r61289 | jeffrey.yasskin | 2008-03-07 07:22:15 +0100 (Fri, 07 Mar 2008) | 5 lines
Progress on issue #1193577 by adding a polling .shutdown() method to
SocketServers. The core of the patch was written by Pedro Werneck, but any bugs
are mine. I've also rearranged the code for timeouts in order to avoid
interfering with the shutdown poll.
........
r61290 | nick.coghlan | 2008-03-07 15:13:28 +0100 (Fri, 07 Mar 2008) | 1 line
Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files)
........
r61298 | andrew.kuchling | 2008-03-07 22:09:23 +0100 (Fri, 07 Mar 2008) | 1 line
Grammar fix
........
r61303 | georg.brandl | 2008-03-08 10:54:06 +0100 (Sat, 08 Mar 2008) | 2 lines
#2253: fix continue vs. finally docs.
........
r61304 | marc-andre.lemburg | 2008-03-08 11:01:43 +0100 (Sat, 08 Mar 2008) | 3 lines
Add new name for Mandrake: Mandriva.
........
r61305 | georg.brandl | 2008-03-08 11:05:24 +0100 (Sat, 08 Mar 2008) | 2 lines
#1533486: fix types in refcount intro.
........
r61312 | facundo.batista | 2008-03-08 17:50:27 +0100 (Sat, 08 Mar 2008) | 5 lines
Issue 1106316. post_mortem()'s parameter, traceback, is now
optional: it defaults to the traceback of the exception that is currently
being handled.
........
r61313 | jeffrey.yasskin | 2008-03-08 19:26:54 +0100 (Sat, 08 Mar 2008) | 2 lines
Add tests for with and finally performance to pybench.
........
r61314 | jeffrey.yasskin | 2008-03-08 21:08:21 +0100 (Sat, 08 Mar 2008) | 2 lines
Fix pybench for pythons < 2.6, tested back to 2.3.
........
r61317 | jeffrey.yasskin | 2008-03-08 22:35:15 +0100 (Sat, 08 Mar 2008) | 3 lines
Well that was dumb. platform.python_implementation returns a function, not a
string.
........
r61329 | georg.brandl | 2008-03-09 16:11:39 +0100 (Sun, 09 Mar 2008) | 2 lines
#2249: document assertTrue and assertFalse.
........
r61332 | neal.norwitz | 2008-03-09 20:03:42 +0100 (Sun, 09 Mar 2008) | 4 lines
Introduce a lock to fix a race condition which caused an exception in the test.
Some buildbots were consistently failing (e.g., amd64).
Also remove a couple of semi-colons.
........
r61344 | raymond.hettinger | 2008-03-11 01:19:07 +0100 (Tue, 11 Mar 2008) | 1 line
Add recipe to docs.
........
r61350 | guido.van.rossum | 2008-03-11 22:18:06 +0100 (Tue, 11 Mar 2008) | 3 lines
Fix the overflows in expandtabs(). "This time for sure!"
(Exploit at request.)
........
r61351 | raymond.hettinger | 2008-03-11 22:37:46 +0100 (Tue, 11 Mar 2008) | 1 line
Improve docs for itemgetter(). Show that it works with slices.
........
r61363 | georg.brandl | 2008-03-13 08:15:56 +0100 (Thu, 13 Mar 2008) | 2 lines
#2265: fix example.
........
r61364 | georg.brandl | 2008-03-13 08:17:14 +0100 (Thu, 13 Mar 2008) | 2 lines
#2270: fix typo.
........
r61365 | georg.brandl | 2008-03-13 08:21:41 +0100 (Thu, 13 Mar 2008) | 2 lines
#1720705: add docs about import/threading interaction, wording by Nick.
........
r61366 | andrew.kuchling | 2008-03-13 12:07:35 +0100 (Thu, 13 Mar 2008) | 1 line
Add class decorators
........
r61367 | raymond.hettinger | 2008-03-13 17:43:17 +0100 (Thu, 13 Mar 2008) | 1 line
Add 2-to-3 support for the itertools moved to builtins or renamed.
........
r61368 | raymond.hettinger | 2008-03-13 17:43:59 +0100 (Thu, 13 Mar 2008) | 1 line
Consistent tense.
........
r61369 | raymond.hettinger | 2008-03-13 20:03:51 +0100 (Thu, 13 Mar 2008) | 1 line
Issue 2274: Add heapq.heappushpop().
........
r61370 | raymond.hettinger | 2008-03-13 20:33:34 +0100 (Thu, 13 Mar 2008) | 1 line
Simplify the nlargest() code using heappushpop().
........
r61371 | brett.cannon | 2008-03-13 21:27:00 +0100 (Thu, 13 Mar 2008) | 4 lines
Move test_thread over to unittest. Commits GHOP 237.
Thanks Benjamin Peterson for the patch.
........
r61372 | brett.cannon | 2008-03-13 21:33:10 +0100 (Thu, 13 Mar 2008) | 4 lines
Move test_tokenize to doctest.
Done as GHOP 238 by Josip Dzolonga.
........
r61373 | brett.cannon | 2008-03-13 21:47:41 +0100 (Thu, 13 Mar 2008) | 4 lines
Convert test_contains, test_crypt, and test_select to unittest.
Patch from GHOP 294 by David Marek.
........
r61374 | brett.cannon | 2008-03-13 22:02:16 +0100 (Thu, 13 Mar 2008) | 4 lines
Move test_gdbm to use unittest.
Closes issue #1960. Thanks Giampaolo Rodola.
........
r61375 | brett.cannon | 2008-03-13 22:09:28 +0100 (Thu, 13 Mar 2008) | 4 lines
Convert test_fcntl to unittest.
Closes issue #2055. Thanks Giampaolo Rodola.
........
r61376 | raymond.hettinger | 2008-03-14 06:03:44 +0100 (Fri, 14 Mar 2008) | 1 line
Leave heapreplace() unchanged.
........
r61378 | martin.v.loewis | 2008-03-14 14:56:09 +0100 (Fri, 14 Mar 2008) | 2 lines
Patch #2284: add -x64 option to rt.bat.
........
r61379 | martin.v.loewis | 2008-03-14 14:57:59 +0100 (Fri, 14 Mar 2008) | 2 lines
Use -x64 flag.
........
r61382 | brett.cannon | 2008-03-14 15:03:10 +0100 (Fri, 14 Mar 2008) | 2 lines
Remove a bad test.
........
r61383 | mark.dickinson | 2008-03-14 15:23:37 +0100 (Fri, 14 Mar 2008) | 9 lines
Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently
across platforms: it should now raise OverflowError on all
platforms. (Previously it raised OverflowError only on
non IEEE 754 platforms.)
Also fix the (already existing) test for this behaviour
so that it actually raises TestFailed instead of just
referencing it.
........
r61387 | thomas.heller | 2008-03-14 22:06:21 +0100 (Fri, 14 Mar 2008) | 1 line
Remove unneeded initializer.
........
r61388 | martin.v.loewis | 2008-03-14 22:19:28 +0100 (Fri, 14 Mar 2008) | 2 lines
Run debug version, cd to PCbuild.
........
r61392 | georg.brandl | 2008-03-15 00:10:34 +0100 (Sat, 15 Mar 2008) | 2 lines
Remove obsolete paragraph. #2288.
........
r61395 | georg.brandl | 2008-03-15 01:20:19 +0100 (Sat, 15 Mar 2008) | 2 lines
Fix lots of broken links in the docs, found by Sphinx' external link checker.
........
r61396 | skip.montanaro | 2008-03-15 03:32:49 +0100 (Sat, 15 Mar 2008) | 1 line
note that fork and forkpty raise OSError on failure
........
r61402 | skip.montanaro | 2008-03-15 17:04:45 +0100 (Sat, 15 Mar 2008) | 1 line
add %f format to datetime - issue 1158
........
r61403 | skip.montanaro | 2008-03-15 17:07:11 +0100 (Sat, 15 Mar 2008) | 2 lines
.
........
2008-03-15 21:07:10 -03:00
|
|
|
The ncurses FAQ: http://invisible-island.net/ncurses/ncurses.faq.html
|
2007-08-15 11:28:22 -03:00
|
|
|
|