summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added intro for 0.1 release and append Grail notes.Guido van Rossum1998-11-161-0/+37
|
* Update the example in "Calling Python Functions from C" to useFred Drake1998-11-161-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 Drake1998-11-161-2/+6
|
* Added a None button to turn off all input sources.Barry Warsaw1998-11-021-4/+22
|
* Clarify the default buffering for open(). (Comment from Andrew DalkeFred Drake1998-11-021-1/+1
| | | | <dalke@bioreason.com>).
* Fix Barry's markup.Fred Drake1998-11-021-1/+1
|
* Warn that AddModule doesn't import the module.Guido van Rossum1998-11-021-1/+6
|
* Metrowerks PRO4 finally fixes the hypot snafu. (Jack Jansen)Guido van Rossum1998-11-021-1/+1
|
* Moved zmod and poly descriptions to the Obsolete section.Fred Drake1998-11-021-11/+11
|
* Declaring zmod and poly obsolete. They have problems.Guido van Rossum1998-11-022-0/+0
|
* Project files converted for CW Pro 4. And the daylight savings time switch ↵Jack Jansen1998-11-0152-1/+1
| | | | seems to have "modified" the resource files (but nothing has changed there).
* If the module SUNAUDIODEV was generated on an older version ofBarry Warsaw1998-11-011-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 thatBarry Warsaw1998-11-011-1/+1
| | | | command line operation is (much) faster.
* Added a version number, --version, and updated the docstring.Barry Warsaw1998-11-011-5/+13
|
* Rewrite, simplification of command line option parsing. Many GUIBarry Warsaw1998-11-011-124/+50
| | | | fixes. Input sources are mutually exclusive.
* Document the new features of this moduleBarry Warsaw1998-10-311-5/+26
|
* audio(7I) suggests that applications do the following to get theBarry Warsaw1998-10-311-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 argsBarry Warsaw1998-10-311-40/+91
|
* Input stuffBarry Warsaw1998-10-301-15/+91
|
* Added command line optionsBarry Warsaw1998-10-301-1/+273
|
* Initial revisionBarry Warsaw1998-10-301-0/+1
|
* Don't describe something as "below"; that won't make sense for theFred Drake1998-10-281-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 Drake1998-10-281-2/+1
|
* Added URL to HOWTO page, with reference to Regex HOWTO.Andrew M. Kuchling1998-10-281-6/+6
| | | | Corrected error: {,5} is not equivalent to {0,5}.
* (py-imenu-method-regexp): Fix suggested by Daniel Calvelo toBarry Warsaw1998-10-281-2/+6
| | | | generalize the matching of function arguments.
* #XEmacs 21 now supports Imenu, so I am able to test (and fix) someBarry Warsaw1998-10-281-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 newBarry Warsaw1998-10-271-8/+9
| | | | #checkin script.
* Support the use of bibtex. This is transparent to the user.Fred Drake1998-10-271-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 Warsaw1998-10-271-6/+6
|
* root is now a global called _rootGuido van Rossum1998-10-261-1/+1
|
* Indicate that os.environ may not be a real dictionary.Guido van Rossum1998-10-241-2/+2
|
* Bump the patch level to 1.5.2b2, just in case I feel like releasingGuido van Rossum1998-10-241-1/+1
| | | | next week. :-)
* Bump version to 1.5.2b1Guido van Rossum1998-10-241-2/+2
|
* Raise the root window on reset().Guido van Rossum1998-10-241-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 Rossum1998-10-241-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 theGuido van Rossum1998-10-241-2/+6
| | | | | unlink() or fdopen() fail, close the file descriptor and re-raise the exception.
* Cope with destruction of the windowGuido van Rossum1998-10-241-7/+24
|
* The last two example functions in the section about default argumentGuido van Rossum1998-10-241-2/+2
| | | | values (4.7.1) should return l, not a. Reported by Axel Boldt.
* Turtle graphicsGuido van Rossum1998-10-241-0/+324
|
* The TemporaryFile() function has a security leak -- because theGuido van Rossum1998-10-241-5/+6
| | | | | | | | | | | | | filenames generated are easily predictable, it is possible to trick an unsuspecting program into overwriting another file by creating a symbolic link with the predicted name. Fix this by using the low-level os.open() function with the O_EXCL flag and mode 0700. On non-Unix platforms, presumably there are no symbolic links so the problem doesn't exist. The explicit test for Unix (posix, actually) makes it possible to change the non-Unix logic to work without a try-except clause. The mktemp() file is as unsafe as ever.
* Use of Breakpoint class should be bdb.Breakpoint.Guido van Rossum1998-10-241-1/+1
|
* Moved compile_command() to a file of its own (codeop.py).Guido van Rossum1998-10-221-82/+3
|
* Moved compile_command() here from code.py, so JPython can provide itsGuido van Rossum1998-10-221-0/+86
| | | | own version.
* Jim Fulton writes:Guido van Rossum1998-10-221-13/+16
| | | | | | | | | | | | """ I've attached a long overdue patch to pickle.py to bring it to format 1.3, which is the same as 1.2 except that the binary float format is supported. This is done using the new platform-indepent format features of struct. This patch also gets rid of the undocumented obsolete Pickler dump_special method. """
* Brief update on the slightly changed API of pyColorChooser.askcolor().Barry Warsaw1998-10-221-11/+41
| | | | Added a To Do list.
* __init__(): Removed initialcolor keyword.Barry Warsaw1998-10-221-6/+26
| | | | | | | | | | | | | show(): added color keyword here so that the selected color can be chosen on each invocation of askcolor(). Also fixed this class, and askcolor() so that the same Chooser instance can be re-used instead of creating a new one on each invocation of askcolor(). Added a module function save() which can be used to explicitly save the option database in ~/.pynche. This does not happen automatically when used as a modal.
* sticky should be NSEW to fix pixel weirdness at right edgeBarry Warsaw1998-10-221-1/+1
|
* Error message goes to stderrBarry Warsaw1998-10-221-4/+8
| | | | | canceled() takes an optional flag so that the canceled flag can be cleared.
* beep => bellBarry Warsaw1998-10-221-3/+6
| | | | deiconify(): New method
* Fixed running of standalone via command line. Also, only do save fromBarry Warsaw1998-10-221-3/+5
| | | | main() so that run-as-modal doesn't automatically save database.