- 16 May, 2003 3 commits
-
-
Guido van Rossum authored
- 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 authored
-
Guido van Rossum authored
"pass" isn't valid syntax. Reported by Samuele Pedroni on python-dev (May 12, 2003).
-
- 15 May, 2003 5 commits
-
-
Kurt B. Kaiser authored
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 authored
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 authored
can't acquire the port to listen on. 2. Shorten the retry and simplify the messages.
-
Kurt B. Kaiser authored
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 authored
(sourceforge pybsddb bug #737970). Also: don't allow other threads to run during calls that invalidate the DB handle.
-
- 14 May, 2003 9 commits
-
-
Marc-André Lemburg authored
-
Raymond Hettinger authored
(Idea contributed by Anthony Baxter.)
-
Kurt B. Kaiser authored
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 authored
-
Andrew M. Kuchling authored
untrusted data.
-
Fred Drake authored
-
Fred Drake authored
- don't use "file" as the name of local variables
-
Fred Drake authored
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 authored
-
- 13 May, 2003 17 commits
-
-
Brett Cannon authored
-
Andrew M. Kuchling authored
(I've tested the fixes, but please proofread anyway.)
-
Guido van Rossum authored
handling.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
as an example program
-
Andrew M. Kuchling authored
Modernize the code a bit Add docstring
-
Andrew M. Kuchling authored
-
Tony Lownds authored
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 authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
Also, put match() description before search(); search() refers to match()
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Brett Cannon authored
Made some stylistic fixes.
-
Brett Cannon authored
-
- 12 May, 2003 6 commits
-
-
Raymond Hettinger authored
* Added more LaTex cmds from the docs. * Blocked forward-slash warnings with delimiters-only option. * Put help message on shorter line to fit an 80 char screen.
-
Brett Cannon authored
-
Fred Drake authored
-
Tim Peters authored
-
Tim Peters authored
This file isn't meant to be executed, it's data input for test_tokenize.py. The problem with the .py extension is that it uses "non-standard" indentation, and it's good to test that, but reindent.py keeps wanting to fix it. But fixing the indentation causes the expected-output file to change, since exact line and column numbers are part of the tokenize.tokenize() output getting tested.
-
Tim Peters authored
bound to a module global, the file object remained opened throughout the test suite run.
-