summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Restore Python 1.5.2 compatibility.Marc-André Lemburg2003-05-141-1/+1
|
* Forward slash warnings now only occur for potentially valid LaTeX commands.Raymond Hettinger2003-05-141-8/+8
| | | | (Idea contributed by Anthony Baxter.)
* On Windows the subprocess was not exiting during a restart.Kurt B. Kaiser2003-05-141-0/+2
| | | | | | | | | | | 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
* defer re module imports to help improve interpreter startupSkip Montanaro2003-05-141-1/+4
|
* [Bug #471893] Replace security material with a warning against unpicklingAndrew M. Kuchling2003-05-142-74/+31
| | | | untrusted data.
* document Stats.dump_stats(), new for Python 2.3Fred Drake2003-05-141-0/+8
|
* - add a dump_stats() method similar to that of the profile.Profile classFred Drake2003-05-141-2/+10
| | | | - don't use "file" as the name of local variables
* When an external application we use exits normally, exit with the sameFred Drake2003-05-141-2/+4
| | | | | | exit code they returned. All other types of exit from child processes are normalized to a return code of 1. Closes SF bug #732143.
* Fleshed out tests for urllib requiring a network connection.Brett Cannon2003-05-141-3/+123
|
* Call time.tzset (if available) just before calculating possible timezones ↵Brett Cannon2003-05-131-0/+4
| | | | from time.tzname.
* Fix use of 'file' as a variable name.Andrew M. Kuchling2003-05-1316-107/+108
| | | | (I've tested the fixes, but please proofread anyway.)
* Add optional 'onerror' argument to os.walk(), to control errorGuido van Rossum2003-05-133-4/+24
| | | | handling.
* Prevent script from allowing '-r12'Andrew M. Kuchling2003-05-131-1/+1
|
* Rename sum5.py to md5sum.py, because sum5.py is more interestingAndrew M. Kuchling2003-05-132-110/+81
| | | | as an example program
* Don't use 'file' as a variable nameAndrew M. Kuchling2003-05-131-24/+17
| | | | | Modernize the code a bit Add docstring
* [Bug #724767] Avoid use of 'file' as a variable nameAndrew M. Kuchling2003-05-131-7/+7
|
* 1. The command-line arguments for subprocesses no longer need to beTony Lownds2003-05-134-64/+35
| | | | | | | 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
* [Bug #713722] Delete dangling references to unwritten sectionsAndrew M. Kuchling2003-05-131-5/+2
|
* [Bug #724767] crlf.py uses the variable name file, which it shouldn't anymore.Andrew M. Kuchling2003-05-131-7/+7
|
* [Bug #732124] Clarify .pos, .endpos by saying 'method' instead of 'function'Andrew M. Kuchling2003-05-131-18/+19
| | | | Also, put match() description before search(); search() refers to match()
* Remove more markup from headersAndrew M. Kuchling2003-05-132-4/+4
|
* [Bug #729297] Remove markup in section headersAndrew M. Kuchling2003-05-131-3/+3
|
* [Bug #729817] Document the rexec and Bastion modules as deadAndrew M. Kuchling2003-05-133-19/+17
|
* Fix typoAndrew M. Kuchling2003-05-131-1/+1
|
* Fixed test_anydbm_creates to use proper paths for the created db.Brett Cannon2003-05-131-5/+11
| | | | Made some stylistic fixes.
* Fix and add reference to urllib.urlencode for parse_qsl? functions.Brett Cannon2003-05-131-1/+5
|
* * Added separate checks for matching braces.Raymond Hettinger2003-05-121-6/+27
| | | | | | * 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.
* John J. Lee contributed two urllib2 patches.Brett Cannon2003-05-121-0/+1
|
* Fix broken API descriptions in comments.Fred Drake2003-05-121-8/+7
|
* Whitespace normalization.Tim Peters2003-05-127-25/+24
|
* Effectively renamed tokenize_tests.py to have a txt extension instead.Tim Peters2003-05-123-1/+7
| | | | | | | | | 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.
* Close the file after tokenizing it. Because the open file object wasTim Peters2003-05-121-2/+5
| | | | | bound to a module global, the file object remained opened throughout the test suite run.
* cmp_type(): The grammar stopped allowing '=' as a comparison operatorTim Peters2003-05-121-3/+2
| | | | | about a decade ago. Put the code still allowing for it in cmp_type() out of its lonely misery.
* Updated simple example. This should have been checked in the otherJim Fulton2003-05-121-45/+45
| | | | day, but I missfired in CVS.
* Add a specific mention of the term "operator overloading" and add anFred Drake2003-05-121-1/+4
| | | | index entry. Suggested to python-docs.
* Remove assert that checked if a parameter was an instance of Request. ↵Brett Cannon2003-05-121-1/+0
| | | | Closes patch #639139.
* Change Request.add_header to call string.capitalize in order to normalizeBrett Cannon2003-05-121-7/+8
| | | | | | headers and not have any dependency on case. Closes patch #649742. Also changed all instances of dict.items to dict.iteritems where appropriate.
* Fix minor typos.Raymond Hettinger2003-05-124-5/+5
|
* Update for SF 71033 and changes to subprocess threadingKurt B. Kaiser2003-05-121-1/+13
|
* 1. RemoteDebugger now runs user code in subprocess MainThreadKurt B. Kaiser2003-05-123-54/+61
| | | | | | | | | | | 2. run.py: move exception printing to toplevel to allow access from main() 3. Clarification in PyShell.py: when the subprocess is restarted, the debugger GUI is reused with a fresh instance of the subprocess debugger. M PyShell.py M RemoteDebugger.py M run.py
* Patch #735613: Pass install-purelib to idleinstall.Martin v. Löwis2003-05-111-0/+1
|
* Patch #718286: Support DESTDIR.Martin v. Löwis2003-05-113-63/+73
|
* Beefed up timezone support. UTC and GMT are now always recognized timezonesBrett Cannon2003-05-112-12/+29
| | | | | with values of 0. Also now check time.daylight to see if time.tzname[1] should be used in timezone checking.
* Update patch #732284: Correct versions of OpenUNIX, UnixWare, add OpenServer.Martin v. Löwis2003-05-112-5/+13
|
* - object is a class type, not a functionFred Drake2003-05-101-3/+4
| | | | | - when marking a function, the trailing () should be included consistently
* Minor fixups.Raymond Hettinger2003-05-101-2/+4
|
* Fix unbalanced parethesis.Raymond Hettinger2003-05-102-2/+2
|
* Add table level validation and made minor fix-ups.Raymond Hettinger2003-05-101-8/+22
|
* Missing parenthesis found by texcheck.pyRaymond Hettinger2003-05-103-4/+4
|
* Patch #734231: Update RiscOS support. In particular, correctMartin v. Löwis2003-05-1027-59/+482
| | | | riscospath.extsep, and use os.extsep throughout.