Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update | Barry Warsaw | 1998-11-18 | 1 | -0/+3 |
| | |||||
* | Updating | Barry Warsaw | 1998-11-18 | 2 | -4/+0 |
| | |||||
* | Eliminate remaining \verb/.../ constructs; there's no need for them. | Fred Drake | 1998-11-17 | 1 | -3/+3 |
| | |||||
* | (py-execute-region): Patch by Hunter Kelly so that execution uses the | Barry Warsaw | 1998-11-17 | 1 | -4/+4 |
| | | | | correct Python shell (CPython or JPython). | ||||
* | Remove some redundant initializations -- patch by Vladimir Marangozov. | Guido van Rossum | 1998-11-17 | 1 | -4/+4 |
| | |||||
* | Accept a non-list sequence for the long options (request by Jack Jansen). | Guido van Rossum | 1998-11-17 | 1 | -39/+54 |
| | | | | | | | | | | | | | Because it might be a common mistake to pass a single string, this situation is treated separately. Since we were making a copy of the longopts list anyway, we now use the list() function -- this made it necessary to change all uses of the local variable (and argument) 'list' to something more meaningful, i.e., 'opts'. Also added docstrings (copied from the library manual) and removed the (now redundant) module comments. | ||||
* | RajGopal Srinivasan noted that the latest code doesn't work when | Guido van Rossum | 1998-11-17 | 1 | -0/+6 |
| | | | | | running in a non-threaded environment. He added some #ifdefs that fix this. | ||||
* | Remove dead code discovered by Vladimir Marangozov. | Guido van Rossum | 1998-11-16 | 1 | -4/+2 |
| | |||||
* | Fix typo in doc for handle(): client_request should be client_address. | Guido van Rossum | 1998-11-16 | 1 | -1/+1 |
| | | | | Noted by Stefan Witzel. | ||||
* | Fix typo in docstring: client_request should be client_address. | Guido van Rossum | 1998-11-16 | 1 | -1/+1 |
| | | | | Noted by Stefan Witzel. | ||||
* | Make tuples less hungry -- an extra item was allocated but never used. | Guido van Rossum | 1998-11-16 | 1 | -1/+1 |
| | | | | Tip by Vladimir Marangozov. | ||||
* | Clarify portability and main program. | Guido van Rossum | 1998-11-16 | 1 | -2/+8 |
| | |||||
* | Added intro for 0.1 release and append Grail notes. | Guido van Rossum | 1998-11-16 | 1 | -0/+37 |
| | |||||
* | Update the example in "Calling Python Functions from C" to use | Fred Drake | 1998-11-16 | 1 | -61/+80 |
| | | | | | | | METH_VARARGS conventions and PyArg_ParseTuple(), and document the flag and where to look for PyArg_ParseTuple() info. Response to comment from Don Bashford <bashford@scripps.edu>. | ||||
* | Document the user and password parameters to the NNTP constructor. | Fred Drake | 1998-11-16 | 1 | -2/+6 |
| | |||||
* | Added a None button to turn off all input sources. | Barry Warsaw | 1998-11-02 | 1 | -4/+22 |
| | |||||
* | Clarify the default buffering for open(). (Comment from Andrew Dalke | Fred Drake | 1998-11-02 | 1 | -1/+1 |
| | | | | <dalke@bioreason.com>). | ||||
* | Fix Barry's markup. | Fred Drake | 1998-11-02 | 1 | -1/+1 |
| | |||||
* | Warn that AddModule doesn't import the module. | Guido van Rossum | 1998-11-02 | 1 | -1/+6 |
| | |||||
* | Metrowerks PRO4 finally fixes the hypot snafu. (Jack Jansen) | Guido van Rossum | 1998-11-02 | 1 | -1/+1 |
| | |||||
* | Moved zmod and poly descriptions to the Obsolete section. | Fred Drake | 1998-11-02 | 1 | -11/+11 |
| | |||||
* | Declaring zmod and poly obsolete. They have problems. | Guido van Rossum | 1998-11-02 | 2 | -0/+0 |
| | |||||
* | Project files converted for CW Pro 4. And the daylight savings time switch ↵ | Jack Jansen | 1998-11-01 | 52 | -1/+1 |
| | | | | seems to have "modified" the resource files (but nothing has changed there). | ||||
* | If the module SUNAUDIODEV was generated on an older version of | Barry Warsaw | 1998-11-01 | 1 | -16/+25 |
| | | | | | Solaris, the `CD' macro won't exist in the header file, so this will raise a NameError. | ||||
* | MainWindow.__init__(): Move the import of Tkinter to here so that | Barry Warsaw | 1998-11-01 | 1 | -1/+1 |
| | | | | command line operation is (much) faster. | ||||
* | Added a version number, --version, and updated the docstring. | Barry Warsaw | 1998-11-01 | 1 | -5/+13 |
| | |||||
* | Rewrite, simplification of command line option parsing. Many GUI | Barry Warsaw | 1998-11-01 | 1 | -124/+50 |
| | | | | fixes. Input sources are mutually exclusive. | ||||
* | Document the new features of this module | Barry Warsaw | 1998-10-31 | 1 | -5/+26 |
| | |||||
* | audio(7I) suggests that applications do the following to get the | Barry Warsaw | 1998-10-31 | 1 | -7/+42 |
| | | | | | | | | | | | | | | | | | | | | device and control pseudo-device: - first look for the device filename in the environment variable AUDIODEV. - if not found, use /dev/audio - calculate the control device by tacking "ctl" onto the base device name. We now do this. Also, if the open fails, we call PyErr_SetFromErrnoWithFilename() to give a more informative error message. Added a fileno() method to the audio object returned from open(). This returns the file descriptor which can be used by applications to set up SIGPOLL notification, as per the manpage. | ||||
* | some rewriting, must do command line args | Barry Warsaw | 1998-10-31 | 1 | -40/+91 |
| | |||||
* | Input stuff | Barry Warsaw | 1998-10-30 | 1 | -15/+91 |
| | |||||
* | Added command line options | Barry Warsaw | 1998-10-30 | 1 | -1/+273 |
| | |||||
* | Initial revision | Barry Warsaw | 1998-10-30 | 1 | -0/+1 |
| | |||||
* | Don't describe something as "below"; that won't make sense for the | Fred Drake | 1998-10-28 | 1 | -5/+5 |
| | | | | | HTML version. Give a reference to the actual section to allow a hyperlink to be built. | ||||
* | Fix typo reported by Gerry Weiner <gerry@ucar.edu>. | Fred Drake | 1998-10-28 | 1 | -2/+1 |
| | |||||
* | Added URL to HOWTO page, with reference to Regex HOWTO. | Andrew M. Kuchling | 1998-10-28 | 1 | -6/+6 |
| | | | | Corrected error: {,5} is not equivalent to {0,5}. | ||||
* | (py-imenu-method-regexp): Fix suggested by Daniel Calvelo to | Barry Warsaw | 1998-10-28 | 1 | -2/+6 |
| | | | | generalize the matching of function arguments. | ||||
* | #XEmacs 21 now supports Imenu, so I am able to test (and fix) some | Barry Warsaw | 1998-10-28 | 1 | -92/+73 |
| | | | | | | | | | | | | | #simple things. First step: rename the Imenu supportive variables and #functions in this file to py-imenu-* so I can grok what is part of #python-mode and what is part of Imenu. (py-imenu-create-index-engine): Fixed problem with two classes in a single file, caused by new semantics of py-beginning-of-def-or-class when called programmatically. #Note, there are still some problems with Imenu when arguments to #functions are funky, but it should be much better now. | ||||
* | #Some minor changes in the commentary, obstensibly to test the new | Barry Warsaw | 1998-10-27 | 1 | -8/+9 |
| | | | | #checkin script. | ||||
* | Support the use of bibtex. This is transparent to the user. | Fred Drake | 1998-10-27 | 1 | -1/+12 |
| | | | | | Switch from bash to ksh, in the hope that more systems support it (one report of a site without an available bash). | ||||
* | #Fixed some typos in docstrings. | Barry Warsaw | 1998-10-27 | 1 | -6/+6 |
| | |||||
* | root is now a global called _root | Guido van Rossum | 1998-10-26 | 1 | -1/+1 |
| | |||||
* | Indicate that os.environ may not be a real dictionary. | Guido van Rossum | 1998-10-24 | 1 | -2/+2 |
| | |||||
* | Bump the patch level to 1.5.2b2, just in case I feel like releasing | Guido van Rossum | 1998-10-24 | 1 | -1/+1 |
| | | | | next week. :-) | ||||
* | Bump version to 1.5.2b1 | Guido van Rossum | 1998-10-24 | 1 | -2/+2 |
| | |||||
* | Raise the root window on reset(). | Guido van Rossum | 1998-10-24 | 1 | -11/+9 |
| | | | | | Different action on WM_DELETE_WINDOW is more likely to do the right thing, allowing us to destroy old windows. | ||||
* | Split the goto() function in two: _goto() is the internal one, | Guido van Rossum | 1998-10-24 | 1 | -5/+9 |
| | | | | | using Canvas coordinates, and goto() uses turtle coordinates and accepts variable argument lists. | ||||
* | Improvement to the previous fix suggested by Thomas Bellman: if the | Guido van Rossum | 1998-10-24 | 1 | -2/+6 |
| | | | | | unlink() or fdopen() fail, close the file descriptor and re-raise the exception. | ||||
* | Cope with destruction of the window | Guido van Rossum | 1998-10-24 | 1 | -7/+24 |
| | |||||
* | The last two example functions in the section about default argument | Guido van Rossum | 1998-10-24 | 1 | -2/+2 |
| | | | | values (4.7.1) should return l, not a. Reported by Axel Boldt. |