- 22 Aug, 2000 5 commits
-
-
Skip Montanaro authored
-
Guido van Rossum authored
conversion in an exception, but instead display <unprintable %s object> where %s is the type name.
-
Greg Ward authored
in archive_util.py.
-
Greg Ward authored
or ZIP file.
-
Tim Peters authored
-
- 21 Aug, 2000 18 commits
-
-
Guido van Rossum authored
test_support. Also fixed the expected output.
-
Fred Drake authored
-
Fred Drake authored
print statement), and fix up the extended call syntax support. Minor stylistic cleanups.
-
Fred Drake authored
Let UserString.translate() method work with unicode data. This closes SourceForge patch #101246.
-
Fred Drake authored
Patch description ----------------- This addresses four issues: (1) usernames and passwords in urls with special characters are now decoded properly. i.e. http://foo%2C:bar@www.whatever.com/ (2) Basic Auth support has been added to HTTPS, like it was in HTTP. (3) Version 1.92 sent the POSTed data, but did not deal with errors (HTTP responses other than 200) properly. HTTPS now behaves the same way HTTP does. (4) made URL-checking beahve the same way with HTTPS as it does with HTTP (changed == to !=).
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
in extended prints should only be evaluated once. This patch plays stack games (documented!) to fix this.
-
Fred Drake authored
-
Barry Warsaw authored
opcode additions.
-
Barry Warsaw authored
Additional test cases for the extended print form.
-
Barry Warsaw authored
Document the extended print form. Fred, please double check the markup!
-
Barry Warsaw authored
eval_code2(): Implement new bytecodes PRINT_ITEM_TO and PRINT_NEWLINE_TO, as per accepted SF patch #100970. Also update graminit.c based on related Grammar/Grammar changes.
-
Barry Warsaw authored
com_print_stmt(): Implement recognition of, and byte compilation for, extended print using new byte codes PRINT_ITEM_TO and PRINT_NEWLINE_TO.
-
Barry Warsaw authored
This adds the two new opcodes to support this feature: PRINT_ITEM_TO, PRINT_NEWLINE_TO.
-
Barry Warsaw authored
This change modifies Python's grammar to include the extended print form.
-
Thomas Wouters authored
-
Tim Peters authored
docs changes are needed (only reference to winreg I could find was in libwinreg.tex, which is documenting _winreg, and merely mentions that a higher-level winreg module *may* appear someday; that's still true).
-
- 20 Aug, 2000 17 commits
-
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
(If they're security holes, should they be documented at all?) Minor rewrites.
-
Jack Jansen authored
- don't identify() enum values. - make aetools.Error available in the package module.
-
Jack Jansen authored
Updated the applescript documentation for te new framework, and replaced the Eudora example with one that uses Disk Copy (which everyone running MacOS 8 or higher should have).
-
Jack Jansen authored
-
Jack Jansen authored
Moved to unsupported: it never lived up to its expectancies, and for the Mac all the functionality is available in the IDE.
-
Jack Jansen authored
Moved to unsupported: it doesn't work anymore and it has outlived its usefulness so I don't want to fix it.
-
Jack Jansen authored
Updated for new AppleScript structure and moved to Lib (it's far too useful to lurk in the source folder).
-
Jack Jansen authored
Fixed again to work with the old scripting interface (so we can test the new one actually still works).
-
Jack Jansen authored
Updated for the new applescript interface (which actually makes it so ridiculously simple that its main reason for existence is backward compatability).
-
Jack Jansen authored
Enums we cannot find are set to None, and enumsubst understands this (no substitution done). This is need for what I think are bugs in the Finder aete resources (some events use unknown enums).
-
Jack Jansen authored
Do two passes over the suites so we can figure out dependencies for enums and such. The manual method was getting too cumbersome for Finder suites.
-
Jack Jansen authored
-
Jack Jansen authored
-
Thomas Wouters authored
trying hard enough to find out what the arguments to an import were. There is no test-case for this bug, yet, but this is what it looked like: from encodings import cp1006, cp1026 ImportError: cannot import name cp1026 '__import__' was called with only the first name in the 'arguments' list.
-
Tim Peters authored
os.name == "nt". This makes test_popen2 pass under Win98SE. HOWEVER, the Win98 "more" invents a leading newline out of thin air, and I'm not sure that the other Windows flavors of "more" also do that. So, somebody please try under other Windows flavors!
-
Tim Peters authored
https://sourceforge.net/patch/?func=detailpatch&patch_id=101110&group_id=5470 Accepted as-is, except for purging an "import *".
-