- 16 May, 2003 9 kayıt (commit)
-
-
Jim Fulton yazdı
Added some defines for PyMODINIT_FUNC so that the examples work with Python 2.2. I think I'm done hacking this documentation. Yippie! :)
-
Jim Fulton yazdı
Added a note that the mechanism for defining new tyoes documented here only works for Python 2.2 and higher.
-
Jim Fulton yazdı
type implementation. Note that this same example lives in Modules/xxmodule.c. (It is just as out of date there.)
-
Jim Fulton yazdı
Objects/xxobject.c example. Updated the discussion of type checking to refer to PyObject_TypeCheck.
-
Martin v. Löwis yazdı
-
Raymond Hettinger yazdı
* Delimiter mismatch now prints a warning instead of raising an exception. * Offer style warnings for use of e.g. and i.e. * Bypass false positive warnings for forward slashes in urls and in /rfc822. * Put non-LaTex delimiter matching first to make -d option more reliable.
-
Guido van Rossum yazdı
- When redirecting, always use GET. This is common practice and more-or-less sanctioned by the HTTP standard. - Add a handler for 307 redirection, which becomes an error for POST, but a regular redirect for GET and HEAD.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
"pass" isn't valid syntax. Reported by Samuele Pedroni on python-dev (May 12, 2003).
-
- 15 May, 2003 5 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
sys.path, prepend it. This allows the module to import other modules in the same directory. Do the same for a script run from the command line. 2. Tweak the IDLE usage message a bit more. SF Bug 706860 (closed) SF Patch 686254 (reject specific solution) SF Patch 507327 (similar) M PyShell.py M ScriptBinding.py
-
Kurt B. Kaiser yazdı
2. Remove the shell menu and associated bindings when running without the subprocess. 3. Update the IDLE Help and usage text. 4. Update display_port_binding_error to suggest using -n M PyShell.py M help.txt
-
Kurt B. Kaiser yazdı
can't acquire the port to listen on. 2. Shorten the retry and simplify the messages.
-
Kurt B. Kaiser yazdı
2. Add an indicator to the shell startup notice when running w/o subprocess. 3. Improve exception reporting when running a command or script from the command line. 4. Clarify the fact that breakpoints set or cleared after a file is saved will revert to the saved state if the file is closed without re-saving. 5. If user tries to exit or restart when user code is running, interrupt the user code. This helps to eliminate occasional hanging subprocesses on Windows (except for Freddy :). M NEWS.txt M PyShell.py M ScriptBinding.py
-
Gregory P. Smith yazdı
(sourceforge pybsddb bug #737970). Also: don't allow other threads to run during calls that invalidate the DB handle.
-
- 14 May, 2003 9 kayıt (commit)
-
-
Marc-André Lemburg yazdı
-
Raymond Hettinger yazdı
(Idea contributed by Anthony Baxter.)
-
Kurt B. Kaiser yazdı
This bug, henceforth designated Freddy, was due to the mistaken elimination of the KeyboardInterrupt exception at the previous revision. PyShell's unix_terminate hammer was masking the problem on Linux. On W2K the subprocess MainThread was trying to print the exception after the SockThread had ceased to service the socket. The subprocess would then detach and spin when the GUI created the new subprocess. Modified Files: run.py
-
Skip Montanaro yazdı
-
Andrew M. Kuchling yazdı
untrusted data.
-
Fred Drake yazdı
-
Fred Drake yazdı
- don't use "file" as the name of local variables
-
Fred Drake yazdı
exit code they returned. All other types of exit from child processes are normalized to a return code of 1. Closes SF bug #732143.
-
Brett Cannon yazdı
-
- 13 May, 2003 17 kayıt (commit)
-
-
Brett Cannon yazdı
-
Andrew M. Kuchling yazdı
(I've tested the fixes, but please proofread anyway.)
-
Guido van Rossum yazdı
handling.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
as an example program
-
Andrew M. Kuchling yazdı
Modernize the code a bit Add docstring
-
Andrew M. Kuchling yazdı
-
Tony Lownds yazdı
specialized for Mac OS X. 2. buildapp.py - a new file for building an application icon for IDLE on Mac OS X. See INSTALL.txt
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
Also, put match() description before search(); search() refers to match()
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
Brett Cannon yazdı
Made some stylistic fixes.
-
Brett Cannon yazdı
-