Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | # Make tabnanny happy. | Guido van Rossum | 1998-06-29 | 1 | -3/+3 |
| | |||||
* | Improved by Eric Raymond. | Guido van Rossum | 1998-06-29 | 1 | -18/+29 |
| | |||||
* | Experimental feature: add default argument to getattr(). | Guido van Rossum | 1998-06-29 | 1 | -5/+13 |
| | |||||
* | Unsigned 1 and 2 byte sized formats shouldn't result in long integer values! | Guido van Rossum | 1998-06-29 | 1 | -2/+8 |
| | |||||
* | Oops! Of course, Tim is right -- when the item is not a hex number, | Guido van Rossum | 1998-06-29 | 1 | -2/+2 |
| | | | | the '%' should be put back in. | ||||
* | Speed-up unquote(), inspired by post from Daniel Walton. | Guido van Rossum | 1998-06-28 | 1 | -18/+16 |
| | |||||
* | Note that no .pyc/.pyo files are created for script files. | Guido van Rossum | 1998-06-28 | 1 | -0/+7 |
| | |||||
* | Now cmd is documented too. | Guido van Rossum | 1998-06-28 | 1 | -0/+4 |
| | |||||
* | Documented smtplib, multifile | Guido van Rossum | 1998-06-28 | 1 | -0/+6 |
| | |||||
* | Documented cmd, smtplib, multifile | Guido van Rossum | 1998-06-28 | 1 | -9/+0 |
| | |||||
* | Added cmd, smtplib, multifile | Guido van Rossum | 1998-06-28 | 1 | -1/+2 |
| | |||||
* | Contributions by Eric Raymond: documentation for modules | Guido van Rossum | 1998-06-28 | 4 | -0/+428 |
| | | | | cmd, multifile and smtplib. | ||||
* | # Added missing semicolon (was #ifdef'ed out in edit on Windows). | Guido van Rossum | 1998-06-28 | 1 | -1/+1 |
| | |||||
* | Added doc strings. | Guido van Rossum | 1998-06-28 | 2 | -10/+98 |
| | |||||
* | Windows-specific hack to make sure that when LoadLibrary() is called, | Guido van Rossum | 1998-06-27 | 1 | -0/+22 |
| | | | | | | the filename contains at least a rudimentary pathname. (The bad part is that we need to call getcwd() because only a prefix of ".\\" is not enough -- we prefix the drive letter.) | ||||
* | Added doc strings. | Guido van Rossum | 1998-06-27 | 1 | -11/+114 |
| | |||||
* | # Remove an extra blank line from a doc string. | Guido van Rossum | 1998-06-27 | 1 | -1/+0 |
| | |||||
* | Added doc strings. Maybe the doc string for the module itself is a bit | Guido van Rossum | 1998-06-27 | 1 | -7/+102 |
| | | | | long, but it sure helps! | ||||
* | New feature: if the object's type has a non-NULL tp_doc field, that | Guido van Rossum | 1998-06-27 | 1 | -2/+9 |
| | | | | | | is returned as the object's __doc__ attribute. (If only the list of methods would be referenced from the type...) | ||||
* | Document optional kwargs argument to start_new_thread(). Also | Guido van Rossum | 1998-06-27 | 1 | -6/+12 |
| | | | | | | document new LockType and reverse the preference for exit() vs. exit_thread() -- exit() is now preferred and exit_thread() is obsolete. | ||||
* | Define new macro Py_InitModule3(name, methods, doc) which calls | Guido van Rossum | 1998-06-27 | 1 | -0/+4 |
| | | | | Py_InitModule4() with appropriate arguments. | ||||
* | Added doc strings. Also export LockType from the modoule, and give it | Guido van Rossum | 1998-06-27 | 1 | -15/+102 |
| | | | | a doc string. | ||||
* | Added doc strings. | Guido van Rossum | 1998-06-26 | 1 | -52/+432 |
| | |||||
* | In raw_input(prompt), make sure that str(prompt) really a string | Guido van Rossum | 1998-06-26 | 1 | -0/+2 |
| | | | | object before using it. | ||||
* | Slight rearrangement of some code to make it faster, by Vladimir | Guido van Rossum | 1998-06-26 | 1 | -9/+15 |
| | | | | Marangozov. | ||||
* | Added build.macfreeze to the "special" folders. | Jack Jansen | 1998-06-26 | 1 | -1/+1 |
| | |||||
* | Config file for frozen binaries. | Jack Jansen | 1998-06-26 | 1 | -4/+32 |
| | |||||
* | Initial documentation on freezing. | Jack Jansen | 1998-06-26 | 3 | -6/+134 |
| | |||||
* | Template project, bundle file and config.c file for frozen applications. | Jack Jansen | 1998-06-26 | 3 | -0/+1311 |
| | |||||
* | A well-known example for freeze. | Jack Jansen | 1998-06-26 | 1 | -0/+5 |
| | |||||
* | Mac version of freeze. Uses standard freeze modules where it can, | Jack Jansen | 1998-06-26 | 10 | -0/+557 |
| | | | | | | | | | augmenting them here and there. For now, it works more-or-less similar to unix/windows freeze, generating a config.c file, but storing modules in PYC resources. A template project is also copied. The hooks are in place to freeze by merging shared libraries so you can freeze without a C compiler/linker, but this does not work yet. | ||||
* | Print message when we load a PYC resource, if verbose import flag is on. | Jack Jansen | 1998-06-26 | 1 | -0/+3 |
| | |||||
* | Remove RCS and #! cruft at top. | Guido van Rossum | 1998-06-26 | 1 | -4/+0 |
| | |||||
* | Allow binding a Tcl command (given as a string) as well as a Python | Guido van Rossum | 1998-06-25 | 1 | -3/+3 |
| | | | | function. | ||||
* | Mark the 'whence' parameter of the file object's seek() method as optional; | Fred Drake | 1998-06-25 | 1 | -1/+1 |
| | | | | it's already decribed that way in the description. | ||||
* | Treat "HEAD" same as "GET", so that CGI scripts won't fail. | Guido van Rossum | 1998-06-25 | 1 | -1/+1 |
| | |||||
* | Rewrite the (test) main program so that when used as a script, it can | Guido van Rossum | 1998-06-25 | 1 | -5/+29 |
| | | | | retrieve one or more URLs to stdout. Use -t to run the self-test. | ||||
* | Piers' latest version, labeled 2.11. This time he integrated my | Guido van Rossum | 1998-06-25 | 1 | -18/+14 |
| | | | | | changes, and made only a few minor changes. No changes of my own this time. | ||||
* | Eric Raymond added support for ESMTP protocol and corrected some typos | Guido van Rossum | 1998-06-25 | 1 | -33/+113 |
| | | | | in comments and doc strings. | ||||
* | Ignore Windows case check for ALL CAPS 8.3 files | Guido van Rossum | 1998-06-24 | 1 | -1/+39 |
| | |||||
* | Subsume the interact() function in a class. This should make it | Guido van Rossum | 1998-06-23 | 1 | -42/+197 |
| | | | | | possible to use this in PythonWin, and to replace Fredrik Lundh's PythonInterpreter class. Fredrik is credited with the class' API. | ||||
* | "if match(x) >= 0:" smells of regex matching; should use "if match(x):" | Guido van Rossum | 1998-06-23 | 1 | -1/+1 |
| | |||||
* | Patch by Eric Raymond: add an optional 'seekable' flag to the | Guido van Rossum | 1998-06-23 | 1 | -11/+23 |
| | | | | | MultiFile constructor, and only do the posstack bookkeeping when it is true. | ||||
* | Removed loading of shared font stuff from howto.cls and manual.cls, moving it | Fred Drake | 1998-06-22 | 3 | -10/+13 |
| | | | | | | | to pypaper.sty. Added the use of the "avant" package to use AvantGarde for the sans-serif font instead of the helvetica font loaded by the "times" package. | ||||
* | Make the large letter at the top of each section use the sans-serif font, | Fred Drake | 1998-06-22 | 1 | -1/+1 |
| | | | | like any other header. | ||||
* | Added texinputs/pypaper.sty to the list of manual style files, so that the | Fred Drake | 1998-06-22 | 1 | -1/+1 |
| | | | | .dvi files are properly dependent on it. | ||||
* | Bugfix to ESR's code reported by himself: should use hasattr() to test | Guido van Rossum | 1998-06-22 | 1 | -1/+1 |
| | | | | for presence unread, not getattr()! | ||||
* | Fix unclear wording pointed out by Tim Peters, about the interaction between | Andrew M. Kuchling | 1998-06-22 | 2 | -4/+6 |
| | | | | | ^ and the pos argument to re.match(). Also, fixed a typo in libregex.tex. | ||||
* | There's no point in mentioning F6 as an alternate EOF on DOS -- it | Guido van Rossum | 1998-06-22 | 1 | -1/+1 |
| | | | | | doesn't work on modern Windows systems, and Control-Z works everywhere. | ||||
* | Revert the change of revision 1.30. While it's in general a laudable | Guido van Rossum | 1998-06-22 | 1 | -1/+1 |
| | | | | | | goal to use isinstance(x, y) instead of comparing type(x) to y, it doesn't make sense to change this in the example code for the type() builtin... |