blob: fadcbfbe949756db7404ade9e98f33ca300e1d1d [file] [log] [blame]
Fred Drakeb8660201998-02-18 16:03:43 +00001PYTHON DOCUMENTATION TO-DO LIST -*- indented-text -*-
Fred Drake81f4b661998-02-17 19:01:02 +00002===============================
3
Fred Drakee39dab62000-07-31 18:18:27 +00004General
5-------
6
7* Figure out HTMLHelp generation for the Windows world.
8
9* Straighten out random/whrandom. Things are generally in the right
10 place, but need to respond to comments in email from Jan Kim
11 <kim@mpiz-koeln.mpg.de>.
12
13
14Python/C API
15------------
Fred Drake81f4b661998-02-17 19:01:02 +000016
Fred Drake5a8aaa71999-07-02 14:31:41 +000017* The "Very High Level Interface" in the API document has been
18 requested; I guess it wouldn't hurt to fill in a bit there. Request
19 by Albert Hofkamp <a.hofkamp@wtb.tue.nl>. (Partly done.)
20
Fred Drake8ece8041999-02-22 14:37:18 +000021* Describe implementing types in C, including use of the 'self'
22 parameter to the method implementation function. (Missing material
23 mentioned in the Extending & Embedding manual, section 1.1; problem
Fred Drakee39dab62000-07-31 18:18:27 +000024 reported by Clay Spence <cspence@sarnoff.com>.) Heavily impacts one
25 chapter of the Python/C API manual.
Fred Drake8ece8041999-02-22 14:37:18 +000026
Fred Drakee39dab62000-07-31 18:18:27 +000027* Missing PyArg_ParseTuple(), PyArg_ParseTupleAndKeywords(),
28 Py_BuildValue(). Information requested by Greg Kochanski
29 <gpk@bell-labs.com>. PyEval_EvalCode() has also been requested.
Fred Drake10682c21999-04-23 15:15:58 +000030
Fred Drakee39dab62000-07-31 18:18:27 +000031Extending & Embedding
32---------------------
33
34* More information is needed about building dynamically linked
35 extensions in C++. Specifically, the extensions must be linked
36 against the C++ libraries (and possibly runtime). Also noted by
37 Albert Hofkamp <a.hofkamp@wtb.tue.nl>.
38
39Reference Manual
40----------------
41
42* Document the Extended Call Syntax in the language reference.
43 [Jeremy Hylton]
44
45* Document new comparison support for recursive objects (lang. ref.?
46 library ref.? (cmp() function). [Jeremy Hylton]
47
Fred Drake8377f5d2000-08-24 00:50:27 +000048* Range literals need to be documented. [Thomas Wouters]
49
50* Augmented assignment. [Thomas Wouters]
51
Fred Drakee39dab62000-07-31 18:18:27 +000052Library Reference
53-----------------
54
55* urllib2 module reference. [Jeremy Hylton]
Fred Drake90938341999-12-23 17:22:13 +000056
Fred Drake8d43a291999-01-12 21:31:16 +000057* Update the pickle documentation to describe all of the current
Fred Drake6a90b5e1999-12-21 23:02:38 +000058 behavior; only a subset is described. __reduce__, etc. Partial
59 update submitted by Jim Kerr <jbkerr@sr.hp.com>.
Fred Drake81f4b661998-02-17 19:01:02 +000060
Fred Drake0f353ed2000-06-29 03:33:28 +000061* Update the httplib documentation to match Greg Stein's HTTP/1.1
62 support and new classes. (Greg, this is yours!)
63
Fred Drakee39dab62000-07-31 18:18:27 +000064Tutorial
65--------
66
67* Update tutorial to use string methods and talk about backward
68 compatibility of same.
69
Fred Drake6a90b5e1999-12-21 23:02:38 +000070
71NOT WORTH THE TROUBLE
72---------------------
73
Fred Drake8d43a291999-01-12 21:31:16 +000074* In the indexes, some subitem entries are separated from the item
75 entries by column- or page-breaks. Reported by Lorenzo M. Catucci
Fred Drake9ef86351999-04-29 04:23:37 +000076 <lorenzo@argon.roma2.infn.it>. This one will be hard; probably not
Fred Drake5a8aaa71999-07-02 14:31:41 +000077 really worth the pain. (Only an issue at all when a header-letter
78 and the first index entry get separated -- can change as soon as we
Fred Drakee39dab62000-07-31 18:18:27 +000079 change the index entries in the text.) Also only a problem in the
80 print version.
Fred Drake13529c41998-07-24 13:02:17 +000081
82* Fix problem with howto documents getting the last module synopsis
83 twice (in \localmoduletable) so we can get rid of the ugly 'uniq'
Fred Drake6a90b5e1999-12-21 23:02:38 +000084 hack in tools/mkhowto. (Probably not worth the trouble of fixing.)