Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
a007c13 Reduce warning count from partparse.py. Removed BaseHTTPServer.py from list of undocumented modules. 29 December 1997, 21:32:26 UTC
3d913ad Revised lib1.texi target to deal with some conversion nastiness. See comment. 29 December 1997, 21:31:23 UTC
1b6cf78 Reduce warning count from partparse.py. 29 December 1997, 20:28:33 UTC
5baf4bc Moved things around a bit in interact(), so outout is processed before input. When an EOF is read, break out of the loop instead of (by default) writing an empty line (which doesn't do much good). Don't close self when falling through the loop. 29 December 1997, 20:05:45 UTC
588f38e Ignore another intermediate file from the info generation. 29 December 1997, 20:03:46 UTC
1d0d7e4 At Jeff Rush' request, add Py_BEGIN/END_ALLOW_THREADS around call to DosSleep(). 29 December 1997, 20:03:10 UTC
d7feffd Reduce warning count from partparse.py. 29 December 1997, 20:02:55 UTC
bfaf3d6 Moved some #ifdefs around that got put in the wrong place by the latest OS/2 patch set. 29 December 1997, 20:02:27 UTC
9cb6480 Added Greg Stein's docs for BaseHTTPServer.py. Moved docs for "re" to before docs for "regex". 29 December 1997, 20:01:55 UTC
b0744c5 Make "{" and "}" in code sample visible instead of a group (it's supposed to be a dictionary...). 29 December 1997, 19:59:38 UTC
9fd41e3 Fixed several bugs reported by Greg McFarmane: * The invoke methods of the three Tkinter widgets Button, Checkbutton and Radiobutton should return the value returned by the callback, (like the Menu widget does): def invoke(self): return self.tk.call(self._w, 'invoke') * The select_from method of the Canvas widget should use 'from', not 'set': def select_from(self, tagOrId, index): self.tk.call(self._w, 'select', 'from', tagOrId, index) Currently, if you use select_from, you get the error message: 'TclError: bad select option "set": must be adjust, clear, from, item, or to' * The 'entrycget' and 'type' methods of the Tk menu widget are missing from Tkinter. * There is a bug in grid_columnconfigure and grid_rowconfigure. For example, this should return the current value of the 'minsize' option for column 0: f.grid_columnconfigure(0, 'minsize') Instead it returns the same as: f.grid_columnconfigure(0) I suggest that the hint given in the comment in the Tkinter.Misc.configure method should be followed - "ought to generalize this so tag_config etc. can use it". Repeating the same configure code several times in Tkinter is inviting errors. [I did not follow this advice --G] * The grid_slaves method should handle options. Currently, to pass options to the grid_slaves method, you have to do something like: grid_slaves('-row', 1) 29 December 1997, 19:59:33 UTC
23e21e7 Minor editing corrections. 29 December 1997, 19:57:36 UTC
983c930 Added doc string, provided by Charles Waldman (with some reformatting and a little editing my me). 29 December 1997, 19:52:29 UTC
bef9b0b Added missing "\" to "\var{address}, var{length}" in buffer_info() description. 29 December 1997, 19:33:45 UTC
2003204 Added doc string, provided by Charles Waldman (with some reformatting and a little editing my me). 29 December 1997, 19:26:28 UTC
6884e3b Reduce warning count from partparse.py. 29 December 1997, 19:09:37 UTC
c416445 Use tableii environment for the table instead of tabular. This makes it consistent with other 2-column tables in the Python documentation. 29 December 1997, 19:02:01 UTC
671fe9d Reduce warning count from partparse.py. 29 December 1997, 18:53:31 UTC
a3e672b Nit adjustments to remove warnings when processed with partparse.py. 29 December 1997, 18:21:37 UTC
f086731 Normalized the word "Unix" to "\UNIX{}". Changed "{\tt crypt}" to "\sectcode{crypt}" in section heading. 29 December 1997, 17:31:22 UTC
a4541af A bunch of minor stuff. Lots of support for new macros defined in myformat.sty; including the new indexing macros, seealso environment & friends, and the byte code instruction support. 29 December 1997, 17:19:22 UTC
05dd3c0 Added back info generation. Still buggy in the final phase (makeinfo run). Does not conflict with any other targets. 29 December 1997, 17:17:54 UTC
cc97454 Added missing "\" to "var{P}.\var{M}" in load_module() description. 29 December 1997, 17:16:24 UTC
f3e6df1 Remove unneeded "{}" that confused makeinfo. 29 December 1997, 17:11:55 UTC
6ccaaf1 Change name of temporary file to avoid possible filesystem issues; matches similar renaming of the @buildno file elsewhere in the Python tree. 29 December 1997, 16:58:46 UTC
1656d17 Changed all \verb\...\ markup to either \code{...} or \samp{...}. 29 December 1997, 16:55:50 UTC
2cd0b9b Removed "-*-texinfo-*-" from first line; this can cause emacs/xemacs to stop and ask the user for permission to set buffer-local variables depending on the user's configuration. Not really needed since this doesn't get edited often. Bumped the version number to 1.5; date still needs to be set. 29 December 1997, 16:54:11 UTC
f995181 Normalized the \seetext markup to match the only other instance: should be "\seetext{...}" instead of "\seetext ...". 29 December 1997, 16:37:04 UTC
45c9df6 Changed some \verb\...\ markup to the more common \code{...}. \verb\...\ is rarely needed and should be avoided where possible since it doesn't behave well with some processing tools (like partparse.py). 29 December 1997, 15:55:10 UTC
d499004 Solve two annoying problems with ftp URLs for Jack: when repeated retrieving files from the same host and directory, you had to close the previous instance before opening a new one; and retrieving a non-existent file would return an empty file. (The latter fix relies on maybe an undocumented property of NLST -- NLST of a file returns just that file, while NLST of a non-existent file returns nothing. A side effect, unfortunately, seems to be that now ftp-retrieving an *empty* directory may fail. Ah well.) 28 December 1997, 04:21:20 UTC
adfacf4 Do a better job of keeping the dialog visible when the master window is near or beyond the edge of the screen. Patch by Skip Montanaro. 28 December 1997, 03:42:50 UTC
0ee3585 do_env_tableii(), do_env_tableiii(): Align the table in the center, just like LaTeX does. There's no need to diverge on this. 28 December 1997, 03:41:07 UTC
4d9d3f1 Typo: Widht instead of Width... 27 December 1997, 15:14:43 UTC
aa06b0e Plug the most annoying recursive printing problem -- reset '_' to None before printing and set it to the printed variable *after* printing (and only when printing is successful). 26 December 1997, 22:15:57 UTC
81e84c9 Just for fun, add a static module, "xyzzy" -- show that calling its initxyzzy() works. 25 December 1997, 04:51:41 UTC
643f8f6 Add setsockopt...SO_REUSEADDR to avoid stupid waiting when killing and restarting the server. 25 December 1997, 04:48:51 UTC
ccb5ec6 Added expect() method which takes a list of regular expressions and an optional timeout. Also moved some imports around. 24 December 1997, 22:24:19 UTC
00f9fea Use string.replace instead of regsub.[g]sub. 24 December 1997, 21:18:41 UTC
b9b50eb Decided to add the telnet library that I wrote long ago (it's still in the Demos/cwilib directory). Converted comments to doc strings and used default arguments instead of *args. Updated the example. 24 December 1997, 21:07:04 UTC
dd79bd3 Checking in fixed PS, with A4 capability. 24 December 1997, 18:32:36 UTC
b9973d9 Script to edit one line in the PS to allow A4 printing. 24 December 1997, 18:31:53 UTC
44a8931 Upped tcl/tk instructions for 8.0p2 23 December 1997, 22:56:25 UTC
c4b9af7 Added Jack Jansen's versioncheck to the README file. 23 December 1997, 19:03:42 UTC
5291037 Adding Jack Jansen's version checking utility. 23 December 1997, 18:43:55 UTC
7f96291 Convert a couple of three-column tables with an empty third column to two-column tables. This improves the rendering of the HTML version on (at least) some browsers. 23 December 1997, 04:21:20 UTC
d665e8b Removed unnecessary \small{} block; latex2html got it wrong and its no longer needed for printed output. 23 December 1997, 04:10:35 UTC
d21759b Removed unnecessary \small{} block; latex2html got it wrong and its no longer needed for printed output. 23 December 1997, 04:03:26 UTC
557dea1 AMK's latest -- synchronized with PCRE 1.04. 22 December 1997, 22:46:52 UTC
0148bbf AMK's latest 22 December 1997, 22:41:40 UTC
9597daf do_env_tableii(), do_cmd_lineii(), do_env_tableiii(), do_cmd_lineiii(): New functions to handle tableii and tableiii environments. Small changes to not add a superfluous space between a function name and the comma in the index. 22 December 1997, 22:37:34 UTC
80e57fb Converted to use re instead of regex; version 0.9.0. 21 December 1997, 07:05:32 UTC
9897f0f Oops, left in a non-standard multi-line doc string that GCC finds okay but other compilers don't like. 21 December 1997, 06:46:20 UTC
8b0d95f Oops, tiny fix for the DGUX rule when installing -- don't fail when libpython$(VERSION).so doesn't exist. 19 December 1997, 23:02:22 UTC
1250195 Added bsddb project 19 December 1997, 04:49:27 UTC
b8c42c9 Add new optional parameter 'suffix' (default ''), which is appended to the temporary file name. Also some minor formatting of Jim F's code. 19 December 1997, 04:29:50 UTC
7d4f68c Oops -- '(' is also a legal start character of a new format... 19 December 1997, 04:25:23 UTC
414fd48 Added doc strings, suggested by Charles G. Waldman (but massaged quite a bit). 19 December 1997, 04:24:24 UTC
3c4bb80 Patch by Brian Gallew for DG/UX. I'm not quite sure what it does but it seems harmless for other platforms. It plays tricks with the name of the library used to link with. Apparently DG/UX really wants a shared library to link with if it wants shared modules to use symbols from the library. I'm not sure why this wasn't an issue with 1.4; DG/UX seems to be the only platform where moving to a single library made things harder! BTW This adds a target to create libpython$(VERSION).so; however this target is *only* for DG/UX. 18 December 1997, 23:55:32 UTC
8f4ceb1 Two unrelated changes: - add test for strptime (not used by the core but needed by Marc Lemburg's Date object). - Test for GNU ld on Solaris; need to add an extra linker option to export symbols in that case. 18 December 1997, 23:42:19 UTC
0e680b7 Moved toolbox to lib-toolbox, Sjoerd-style. 18 December 1997, 17:50:29 UTC
3802039 Moved scripting to lib-scripting (did it the Sjoerd-way this time) 18 December 1997, 17:47:12 UTC
e903aab Replace unprotected tilders by \~ -- an unprotected tilde is a non-breaking space! 18 December 1997, 16:28:56 UTC
b2c6ef8 Change {\em ...} to \emph{...}; this seems to be the developing preference throughout the manuals, and seems easier to read. 18 December 1997, 15:56:05 UTC
616b23b img_tag(), top_navigation_panel(): Generate markup the same case as other functions in this file. 18 December 1997, 14:16:46 UTC
8da9e6a make_mod_index_entry(): Generate markup the same case as other functions in this file. 18 December 1997, 14:14:16 UTC
95cdb35 Oops, the output file really should be called zlib.pyd here! 18 December 1997, 05:27:55 UTC
bd104bf Added project for zlib 18 December 1997, 05:22:23 UTC
9ec0f8b Win32 treatment. 18 December 1997, 05:21:29 UTC
629bcfb Make this test succeed even when using "import test.test_zlib". 18 December 1997, 05:21:07 UTC
ffeb593 Changes for older Win platforms by Jim Ahlstrom 17 December 1997, 21:27:23 UTC
b1d368c Tiny doc patch for QNS 17 December 1997, 21:08:34 UTC
e8c27bb Oops! Should've renamed dos_8x3 to dos-8x3 here, too. 17 December 1997, 18:57:16 UTC
304474f Make the word "Module" in the section header start with an upper-case "M". Include "()" when naming functions in the text. Fixed reference to the built-in str() function. Format constant names using \code{}. 17 December 1997, 15:30:07 UTC
20417b7 Make the word "Module" in the section header start with an upper-case "M". Added index entry for RFC 1014. 17 December 1997, 14:17:35 UTC
b78da33 Make the word "Module" in the section header start with an upper-case "M" for all three modules described here. Added a \label{} for each of the two modules missing it. 17 December 1997, 14:12:31 UTC
a47bce5 Make the word "Module" in the section header start with an upper-case "M". Added a \label{} for the module. Fixed one minor grammatical nit: use plural pronoun to refer to a pair of referents. Include "()" when naming functions in the text. 17 December 1997, 14:11:18 UTC
9c48319 Make the word "Module" in the section header start with an upper-case "M". 17 December 1997, 14:08:01 UTC
2303d31 Make the word "Module" in the section header start with an upper-case "M". Added a \label{} for the module. Changed one \code{} to a \samp{}. 17 December 1997, 14:07:25 UTC
bcda484 Make the word "Module" in the section header start with an upper-case "M". 17 December 1997, 14:01:52 UTC
36499b8 Make the word "Module" in the section header start with an upper-case "M" for both modules documented here. 17 December 1997, 14:01:31 UTC
14f8521 Make the word "Module" in the section header start with an upper-case "M". 17 December 1997, 13:52:04 UTC
7372e57 Make the word "Module" in the section header start with an upper-case "M". Minor grammatical nit. 17 December 1997, 13:51:08 UTC
045c7fc Make the word "Module" in the section header start with an upper-case "M". Remove the leading comment declaring this to be a template for module documentation. 17 December 1997, 13:47:39 UTC
6f07010 Make the word "Module" in the section header start with an upper-case "M" for both modules documented here. 17 December 1997, 13:45:50 UTC
dccd9db Make the word "Module" in the section header start with an upper-case "M" for both built-in and standard modules. They were different. 17 December 1997, 13:44:37 UTC
819b789 gen_index_id(): New function. Construct an index key such that the sort is stable and the form is only defined in one place, since we do some fancy footwork with the keys to separate the defining instance of a module reference from other references in the HTML index. make_index_entry(): Override the standard definition to use get_index_id(). make_str_index_entry(): Moved to myformat.perl; only needed there. index_key_eq(): Override the standard definition. Add key transforms to remove extra junk from the end of the keys; it was only there to maintain ordering. clean_key(): Remove key transform no longer needed at this stage, because keeping it makes the sort unstable. add_idx(): Add key transforms to undo the mess we do to separate a module's defining and reference entries. Don't make the text bold. 17 December 1997, 03:08:27 UTC
84818d7 make_mod_index_entry(): New function. Create the index entry for a module. my_module_index_helper(): Do the actual work for \*modindex{}, including both the defining and reference forms. make_str_index_entry(): Moved from .latex2html-init; it's really specific to the presentation. 17 December 1997, 02:59:39 UTC
58132c6 AMK's latest; plus three null bytes that I added for purify 17 December 1997, 00:24:13 UTC
e4eb223 AMK's latest 17 December 1997, 00:23:39 UTC
e795197 Fix mysterious undetected error -- call to non-existant Py_Err_SetStr() which shoulda coulda woulda oughta been PyErr_SetString(). 16 December 1997, 23:58:15 UTC
7988206 Don't list which files to add, since the ones that *were* missing have now been added. 16 December 1997, 22:26:02 UTC
7651624 New VC++ 4.2 makefile, contributed by Gregor Schmid, which adds the three missing files. 16 December 1997, 22:25:15 UTC
71c0dec Up the version. 16 December 1997, 21:14:55 UTC
72df9bc do_cmd_refbimodindex(), do_cmd_refstmodindex(): New functions, handle the reference form of \bimodindex{} and \stmodindex{}. my_parword_index_helper(): Fixed to include proper anchor in result text. 16 December 1997, 21:13:20 UTC
0721358 Fix a bug in translate(): the pointer was incremented by the length of the *escaped* url. Also added new special characters that are not part of the url when found at the end: ( < > . 16 December 1997, 21:12:47 UTC
bef74b5 Add -lld option for AIX to _tkinter rules. 16 December 1997, 18:12:30 UTC
fedc6d0 Added SOLID definition. 16 December 1997, 17:54:18 UTC
5ca9033 Index the RFC822 reference (some other RFC references were alreaddy indexed). Add index reference to mailbox module; also remove comment that it's undocumented (it has been). 16 December 1997, 15:19:47 UTC
b532399 PhotoImage.put(): Fixed -to handling, including backward compatibility hack. Guido, please take a look at this. 16 December 1997, 15:03:43 UTC
8e07998 The \indexsubitem definition for the actual exceptions did not actually change the \indexsubitem value; fixed. 16 December 1997, 14:54:32 UTC
back to top