Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove all occurence of math.rint() from the sources | Peter Schneider-Kamp | 2000-08-10 | 3 | -14/+1 |
| | | | | (and yes, "Currintly" also counts <0.5 wink>) | ||||
* | Improve MHMailbox: messages are now sorted in numerical order. | Guido van Rossum | 2000-08-10 | 1 | -3/+8 |
| | | | | Also don't allow leading zeros in message numbers. | ||||
* | Tweak curses.wrapper so it initializes colors if they are available. | Eric S. Raymond | 2000-08-09 | 1 | -0/+9 |
| | |||||
* | -- added a couple of missing Tkinter constants (canvas item styles, | Fredrik Lundh | 2000-08-09 | 1 | -0/+22 |
| | | | | place bordermode, etc) | ||||
* | -- don't mess up in winfo_visualsavailable if the system only | Fredrik Lundh | 2000-08-09 | 1 | -0/+2 |
| | | | | supports a single visual (closes bug #110603) | ||||
* | -- added optional newstate argument to Wm.state. The newstate arg | Fredrik Lundh | 2000-08-09 | 1 | -4/+4 |
| | | | | was added in Tk 8.3 (this fixes the first part of Bug #110605) | ||||
* | -- use explicit conversion instead of u-string literal in the test | Fredrik Lundh | 2000-08-09 | 1 | -4/+8 |
| | | | | | code, to make the new Tkinter.py run under 1.5.2 -- changed Text.yview argument name (for consistency with xview) | ||||
* | -- added xview_moveto, xview_scroll, yview_moveto, yview_scroll | Fredrik Lundh | 2000-08-09 | 1 | -3/+19 |
| | | | | to the Text method (closes Bug #110605) | ||||
* | -- untabification (use "diff -b" to verify) | Fredrik Lundh | 2000-08-09 | 2 | -2859/+2858 |
| | |||||
* | -- changed findall to return empty strings instead of None | Fredrik Lundh | 2000-08-09 | 1 | -0/+1 |
| | | | | for undefined groups | ||||
* | -- enabled some temporarily disabled RE tests | Fredrik Lundh | 2000-08-08 | 3 | -6/+39 |
| | | | | | -- added basic unicode tests to test_re -- added test case for Sjoerd's xmllib problem to re_tests | ||||
* | -- whitespace cleanup (real changes coming in next checkin) | Fredrik Lundh | 2000-08-08 | 1 | -20/+20 |
| | |||||
* | -- whitespace cleanup (more tests to be added in the next commit) | Fredrik Lundh | 2000-08-08 | 1 | -23/+23 |
| | |||||
* | Barry's patch to test the new setdefault() method. | Guido van Rossum | 2000-08-08 | 1 | -0/+12 |
| | |||||
* | Barry's patch to implement the new setdefault() method. | Guido van Rossum | 2000-08-08 | 1 | -0/+4 |
| | |||||
* | Fix so 'split_quoted()' handles any whitespace delimiter (not just space). | Greg Ward | 2000-08-08 | 1 | -2/+2 |
| | |||||
* | Removing UTF-16 aware Unicode comparison code. This kind of compare | Marc-André Lemburg | 2000-08-08 | 2 | -51/+53 |
| | | | | | | | function (together with other locale aware ones) should into a new collation support module. See python-dev for a discussion of this removal. Note: This patch should also be applied to the 1.6 branch. | ||||
* | -- reset marks if repeat_one tail doesn't match | Fredrik Lundh | 2000-08-07 | 3 | -120/+168 |
| | | | | | | | (this should fix Sjoerd's xmllib problem) -- added skip field to INFO header -- changed compiler to generate charset INFO header -- changed trace messages to support post-mortem analysis | ||||
* | Fix so the 'install_libbase' directory -- where .pth files are installed -- | Greg Ward | 2000-08-07 | 1 | -1/+1 |
| | | | | | | participates in the "--root" hack, ie. it also has a new root directory hacked on at the very last minute (essential if the .pth file is to be included in an RPM or other smart installer!). | ||||
* | Fix so we clear or reinitialize various data structures before populating | Greg Ward | 2000-08-07 | 1 | -0/+5 |
| | | | | | (allows the same FancyGetopt object to be used multiple times with different option tables). | ||||
* | Neil Schemenauer: GC enable(), disable(), isenabled() interface. | Vladimir Marangozov | 2000-08-06 | 1 | -0/+12 |
| | | | | | | Small stylistic changes by VM: - is_enabled() -> isenabled() - static ... Py_<func> -> static ... gc_<func> | ||||
* | Rewrite of normpath() by Corran Webster, so trailing :s are removed | Jack Jansen | 2000-08-06 | 1 | -32/+23 |
| | | | | (except for : and volume:, where they are needed). | ||||
* | Fixed imports from '*util' modules to not just import everything from util. | Greg Ward | 2000-08-05 | 7 | -16/+18 |
| | |||||
* | Drop the 'extend()' function -- old 1.5.1 compatibility hack that | Greg Ward | 2000-08-05 | 1 | -20/+0 |
| | | | | | wasn't actually used anywhere. Drop the "from xxx_util import*" backwards compability hacks. | ||||
* | replace most calls to emit 'SET_LINENO' will call to method set_lineno | Jeremy Hylton | 2000-08-04 | 1 | -31/+42 |
| | | | | based on bug report by Neil Schemenauer | ||||
* | update my email address | Jeremy Hylton | 2000-08-04 | 1 | -1/+4 |
| | | | | fix com_call_function to cope with trailing comma in "f(a, b,)" | ||||
* | Oooopsss.....tab and space mismatch corrected. | Moshe Zadka | 2000-08-04 | 1 | -2/+2 |
| | |||||
* | Raise 'TestSkipped' (from the test_support) module rather than 'ImportError' | Thomas Wouters | 2000-08-04 | 10 | -19/+20 |
| | | | | | to signify a test that should be marked as 'skipped' rather than 'failed'. Also 'document' it, in README. | ||||
* | Raise TestSkipped, not ImportError. | Moshe Zadka | 2000-08-04 | 1 | -2/+2 |
| | | | | Honesty's the best policy. | ||||
* | Make test_support.TestSkipped errors work the same way as ImportErrors: | Thomas Wouters | 2000-08-04 | 1 | -1/+1 |
| | | | | mark the test as 'skipped', rather than 'failed'. | ||||
* | In case the user isn't allowed to access /dev/dsp or /dev/dsp isn't there | Moshe Zadka | 2000-08-04 | 1 | -0/+3 |
| | | | | | | | | | at all (my computer doesn't have a Sound Blaster), this doesn't mean there's a bug in linuxaudiodev. The only error the test suite skips is currently ImportError -- so that's what we raise. If you see a problem with this patch, say so and I'll retract. If you think raising an ImportError sucks, you're right -- but I ain't gonna buy a SB and I sure ain't gonna let the test-suite fail on my machine. | ||||
* | Add missing 'try:'. Patch by Rob W. W. Hooft, #101071 (closed.) | Thomas Wouters | 2000-08-04 | 1 | -0/+1 |
| | |||||
* | Corrected a bug in handling of ^N and ^P with stripspaces on. | Eric S. Raymond | 2000-08-04 | 1 | -8/+12 |
| | |||||
* | Remove the outer test for __name__; not necessary. | Fred Drake | 2000-08-04 | 1 | -8/+7 |
| | |||||
* | Added 'debug_print()'. | Greg Ward | 2000-08-04 | 1 | -0/+5 |
| | |||||
* | Rewrote 'find_library_file()' much more cleanly (and consistently with | Greg Ward | 2000-08-04 | 1 | -18/+16 |
| | | | | | MSVCCompiler's version, to aid in factoring common code out of the two classes when the time comes). | ||||
* | Added 'debug' flag to 'find_library_file()', and changed code to handle it. | Greg Ward | 2000-08-04 | 1 | -6/+11 |
| | |||||
* | Added 'debug' flag to 'find_library_file()'. | Greg Ward | 2000-08-04 | 2 | -4/+6 |
| | |||||
* | test the non-multipart sections of the cgi module | Jeremy Hylton | 2000-08-03 | 2 | -0/+196 |
| | |||||
* | Remove very long doc string (it's all in the docs) | Jeremy Hylton | 2000-08-03 | 1 | -399/+3 |
| | | | | | Modify parse_qsl to interpret 'a=b=c' as key 'a' and value 'b=c' (which matches Perl's CGI.pm) | ||||
* | add a bit more legal junk | Greg Stein | 2000-08-03 | 1 | -8/+16 |
| | | | | (too lazy to paste in the whole BSD license tho; included by ref) | ||||
* | Checking in empty tests for urlparse, as future place holders | Moshe Zadka | 2000-08-03 | 2 | -0/+1 |
| | |||||
* | -- added recursion limit (currently ~10,000 levels) | Fredrik Lundh | 2000-08-03 | 2 | -0/+11 |
| | | | | | | | -- improved error messages -- factored out SRE_COUNT; the same code is used by SRE_OP_REPEAT_ONE_TEMPLATE -- minor cleanups | ||||
* | Added a -l/--leakdebug option which turns on DEBUG_LEAK if the gc | Barry Warsaw | 2000-08-03 | 1 | -12/+23 |
| | | | | module is importable. | ||||
* | Added output for testsuite for new zip() builtin. | Barry Warsaw | 2000-08-03 | 1 | -0/+1 |
| | |||||
* | Added testsuite for new zip() builtin. | Barry Warsaw | 2000-08-03 | 1 | -0/+36 |
| | |||||
* | Comment out repeated-group test for the moment | Andrew M. Kuchling | 2000-08-03 | 1 | -1/+1 |
| | |||||
* | Add nasty test case that overflows the stack with a repeated group | Andrew M. Kuchling | 2000-08-03 | 1 | -0/+4 |
| | |||||
* | Typo fix. | Greg Ward | 2000-08-02 | 1 | -1/+1 |
| | |||||
* | Added 'wininst' to the 'format_commands' list, so it's included in | Greg Ward | 2000-08-02 | 1 | -3/+6 |
| | | | | | the --help-formats output. Also moved that list up so it's more obvious when adding formats. |