Fred Drake | b866020 | 1998-02-18 16:03:43 +0000 | [diff] [blame] | 1 | PYTHON DOCUMENTATION TO-DO LIST -*- indented-text -*- |
Fred Drake | 81f4b66 | 1998-02-17 19:01:02 +0000 | [diff] [blame] | 2 | =============================== |
| 3 | |
| 4 | |
Fred Drake | 8ece804 | 1999-02-22 14:37:18 +0000 | [diff] [blame] | 5 | * Describe implementing types in C, including use of the 'self' |
| 6 | parameter to the method implementation function. (Missing material |
| 7 | mentioned in the Extending & Embedding manual, section 1.1; problem |
| 8 | reported by Clay Spence <cspence@sarnoff.com>.) |
| 9 | |
Fred Drake | e0208cc | 1999-04-22 13:05:52 +0000 | [diff] [blame] | 10 | * Complete the "Matching vs. Searching" subsection in the re module |
| 11 | section. |
| 12 | |
Fred Drake | 10682c2 | 1999-04-23 15:15:58 +0000 | [diff] [blame] | 13 | * The "Very High Level Interface" in the API document has been |
| 14 | requested; I guess it wouldn't hurt to fill in a bit there. Request |
Fred Drake | 9ef8635 | 1999-04-29 04:23:37 +0000 | [diff] [blame^] | 15 | by Albert Hofkamp <a.hofkamp@wtb.tue.nl>. (Partly done.) |
Fred Drake | 10682c2 | 1999-04-23 15:15:58 +0000 | [diff] [blame] | 16 | |
| 17 | * In the extensions manual, more information is needed about building |
| 18 | dynamically linked extensions in C++. Specifically, the extensions |
| 19 | must be linked against the C++ libraries (and possibly runtime). |
| 20 | Also noted by Albert Hofkamp <a.hofkamp@wtb.tue.nl>. |
| 21 | |
Fred Drake | 8d43a29 | 1999-01-12 21:31:16 +0000 | [diff] [blame] | 22 | * Update the pickle documentation to describe all of the current |
| 23 | behavior; only a subset is described. __reduce__, etc. |
Fred Drake | 81f4b66 | 1998-02-17 19:01:02 +0000 | [diff] [blame] | 24 | |
Fred Drake | e0208cc | 1999-04-22 13:05:52 +0000 | [diff] [blame] | 25 | * Update the code module documentation. |
| 26 | |
Fred Drake | 8d43a29 | 1999-01-12 21:31:16 +0000 | [diff] [blame] | 27 | * In the indexes, some subitem entries are separated from the item |
| 28 | entries by column- or page-breaks. Reported by Lorenzo M. Catucci |
Fred Drake | 9ef8635 | 1999-04-29 04:23:37 +0000 | [diff] [blame^] | 29 | <lorenzo@argon.roma2.infn.it>. This one will be hard; probably not |
| 30 | really worth the pain. |
Fred Drake | 13529c4 | 1998-07-24 13:02:17 +0000 | [diff] [blame] | 31 | |
| 32 | * Fix problem with howto documents getting the last module synopsis |
| 33 | twice (in \localmoduletable) so we can get rid of the ugly 'uniq' |
Fred Drake | 9ef8635 | 1999-04-29 04:23:37 +0000 | [diff] [blame^] | 34 | hack in tools/mkhowto.sh. (Probably not worth the trouble of |
| 35 | fixing.) |
Fred Drake | 8d43a29 | 1999-01-12 21:31:16 +0000 | [diff] [blame] | 36 | |
Fred Drake | 8d43a29 | 1999-01-12 21:31:16 +0000 | [diff] [blame] | 37 | * Figure out HTMLHelp generation for the Windows world. |