Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ConfigParser enhancements to edit existing configs, part 2 | Eric S. Raymond | 2000-07-14 | 1 | -5/+41 |
| | |||||
* | Typo fix from Bastian Kleineidam | Andrew M. Kuchling | 2000-07-14 | 1 | -1/+1 |
| | |||||
* | Break the cycles after testing cmp() on cyclic objects. | Vladimir Marangozov | 2000-07-14 | 1 | -0/+2 |
| | |||||
* | Apply Greg Kochanski's fix for open/265. | Eric S. Raymond | 2000-07-13 | 1 | -4/+1 |
| | |||||
* | Fix bug open/243 reported by Dimitri Papadopoulos | Eric S. Raymond | 2000-07-13 | 1 | -1/+2 |
| | |||||
* | forgot to change copy.copy(m) to m[:] | Skip Montanaro | 2000-07-13 | 1 | -2/+2 |
| | |||||
* | fixed semantics of commonprefix to work by path elements instead of | Skip Montanaro | 2000-07-12 | 4 | -12/+53 |
| | | | | characters. | ||||
* | apply patch #100868 from Moshe Zadka: | Greg Stein | 2000-07-12 | 1 | -5/+10 |
| | | | | refactor the copying of file data. new: shutil.copyfileobj(fsrc, fdst) | ||||
* | Remove extra argument to method call | Andrew M. Kuchling | 2000-07-12 | 1 | -1/+1 |
| | |||||
* | new test for posixpath module | Skip Montanaro | 2000-07-12 | 1 | -0/+2 |
| | |||||
* | new test file for posixpath module | Skip Montanaro | 2000-07-12 | 1 | -0/+42 |
| | |||||
* | small updates to string_join: | Jeremy Hylton | 2000-07-11 | 1 | -0/+3 |
| | | | | | | | use PyString_AS_STRING macro on local string object when resizing string, make sure resized string will always be big enough split string containing error message across two lines add test to string_tests that causes resizing | ||||
* | Create two new exceptions: IndentationError and TabError. These are | Fred Drake | 2000-07-11 | 2 | -0/+12 |
| | | | | | | | used for indentation related errors. This patch includes Ping's improvements for indentation-related error messages. Closes SourceForge patches #100734 and #100856. | ||||
* | fix bug #42 reported by Andrew Dalke | Jeremy Hylton | 2000-07-11 | 5 | -27/+2 |
| | | | | | | | | | | | | | | The Compare close contains a close method that checks to see if there is any unconsumed data in the Compare instance; i.e. if the canonical output file contains more data than was produced by the current test run. This method was never called, allowing differences to go undetected. Fix is to call close after the test is run (after __import__) output/test_long and output/test_popen2 needed trivial changes output/test_select contained lots of text, but test_select.py produced no output | ||||
* | Bug fix: ? and ! were not full aliases for `help' and `shell' as implied in | Eric S. Raymond | 2000-07-11 | 1 | -6/+6 |
| | | | | the documentation; the cases `? foo' and `! foo' failed. | ||||
* | fixed inconsistent use of tab and spaces | Peter Schneider-Kamp | 2000-07-11 | 1 | -3/+3 |
| | |||||
* | Add test of resize() method of mmap objects | Andrew M. Kuchling | 2000-07-11 | 2 | -0/+13 |
| | |||||
* | Docstring changes. | Andrew M. Kuchling | 2000-07-11 | 2 | -6/+2 |
| | |||||
* | add more tests of string.join variants to run_method_tests | Jeremy Hylton | 2000-07-11 | 1 | -8/+11 |
| | |||||
* | -- removed get_default compatibility kludge | Fredrik Lundh | 2000-07-10 | 2 | -3/+4 |
| | | | | -- added a few extra comments to locale.py | ||||
* | Give ConfigParser the capability to set as well as read options, and to write | Eric S. Raymond | 2000-07-10 | 1 | -0/+36 |
| | | | | | | | | | | | | | a representation of the configuration state in .ini format that can be read back in by a future read() call. Thus this class is now a back end for .ini editors as well as parsers. This patch is complete and tested, but exposes a bug in the ConfigParser implementation which I have not yet fixed. Because case information is discarded during parsing, the output of write() has its case smashed. I wrote this for a SourceForge interface script called forgetool. Documentation for the new entry points included. | ||||
* | factor out test definitions to string_tests module | Jeremy Hylton | 2000-07-10 | 4 | -353/+202 |
| | | | | test_string and test_userstring run same tests for string methods | ||||
* | add isalpha and isalnum methods | Jeremy Hylton | 2000-07-10 | 1 | -0/+2 |
| | |||||
* | Added the line 'Testing UTF-16 code point order comparisons... done." | Guido van Rossum | 2000-07-10 | 1 | -0/+1 |
| | | | | to match addition to test_unicode.py. | ||||
* | remove prints of file objects from _test | Jeremy Hylton | 2000-07-10 | 1 | -2/+0 |
| | |||||
* | expect message "no regression test case for method 'encode' | Jeremy Hylton | 2000-07-10 | 1 | -0/+3 |
| | |||||
* | Patch from Joe Eaton <jeaton@hostway.net> (SF#100741) to fix following problem: | Andrew M. Kuchling | 2000-07-10 | 1 | -1/+0 |
| | | | | | | | | There is a silly bug in the fall-back dumbdbm.py database package in the Python 1.5.2 standard distro. This bug causes any changes to an existing item to generate a new key, even when the key already exists. After many updates, the .dir file used by dumbdbm grows to a huge size, and can cause filesystem problems. | ||||
* | Better error handling of bad entity references. Before when an & in | Sjoerd Mullender | 2000-07-10 | 1 | -16/+25 |
| | | | | | | an attribute value was not escaped, you could get two syntax errors: one about a missing semicolon and one about an unknown entity. Now you get only one about a bogus ampersand. | ||||
* | - changed the nt.popen2 return values back to | Fredrik Lundh | 2000-07-09 | 1 | -10/+25 |
| | | | | | | | | (write, read, ...), based on feedback from GvR. - added tuple-swapping code to popen2.py - fixed some runaway indentation in posixmodule.c | ||||
* | - repaired locale.py for non-windows platforms. the try/except | Fredrik Lundh | 2000-07-09 | 1 | -2/+5 |
| | | | | | checked for the wrong exception. my fault. sorry. (first reported by Alex Coventry) | ||||
* | Use TQSQ (triple quoted single quote) module docstring for better | Barry Warsaw | 2000-07-09 | 1 | -2/+2 |
| | | | | font-locking. This complets the merge with Mailman's version. | ||||
* | - added popen.popen2/popen3/popen4 support for | Fredrik Lundh | 2000-07-09 | 1 | -15/+39 |
| | | | | | | | | | | | | windows. - added optional mode argument to popen2/popen3 for unix; if the second argument is an integer, it's assumed to be the buffer size. - changed nt.popen2/popen3/popen4 return values to match the popen2 module (stdout first, not stdin). | ||||
* | - merged setlocale and set_locale. the internal setlocale | Fredrik Lundh | 2000-07-09 | 1 | -92/+159 |
| | | | | | | | | | | | | | | | | | | function is overridden by a python version which accepts *either* a string (old behaviour) or a locale tuple. - renamed a few methods (for consistency): get_locale => getlocale get_default_locale => getdefaultlocale set_to_default => resetlocale (!) - the _locale implementation module can now implement an optional _getdefaultlocale function. if that function isn't available, a POSIX-based approach is used (checking LANG and other environment variables, as usual). (patch #100765) | ||||
* | New module to control Web browsers; see the documentation for | Fred Drake | 2000-07-09 | 1 | -0/+229 |
| | | | | more information. | ||||
* | Make tabnanny happy. | Fred Drake | 2000-07-09 | 2 | -254/+254 |
| | | | | mailbox.py: Convert to 4-space indents. | ||||
* | delete bogus file | Guido van Rossum | 2000-07-07 | 1 | -246/+0 |
| | |||||
* | Deleted bogus file. | Guido van Rossum | 2000-07-07 | 1 | -946/+0 |
| | |||||
* | fix inconsistent use of tabs and spaces | Jeremy Hylton | 2000-07-07 | 1 | -8/+11 |
| | | | | convert semicolons to newlines | ||||
* | fix inconsistent use of tabs and spaces | Jeremy Hylton | 2000-07-07 | 2 | -20/+20 |
| | |||||
* | fix inconsistent use of tabs and spaces | Jeremy Hylton | 2000-07-07 | 4 | -24/+24 |
| | |||||
* | Tests for new surrogate support in the UTF-8 codec. By Bill Tutt. | Marc-André Lemburg | 2000-07-07 | 1 | -0/+72 |
| | |||||
* | Tests for new instance support in unicode(). | Marc-André Lemburg | 2000-07-07 | 1 | -0/+15 |
| | |||||
* | Change whitespace in two places to silence tabnanny. | Guido van Rossum | 2000-07-06 | 1 | -4/+4 |
| | | | | Also fix spelling tupel -> tuple. | ||||
* | fixed indentation in several places | Skip Montanaro | 2000-07-06 | 1 | -19/+19 |
| | |||||
* | fix indentation in one docstring | Skip Montanaro | 2000-07-06 | 1 | -1/+1 |
| | |||||
* | fix indentation in three docstrings | Skip Montanaro | 2000-07-06 | 1 | -3/+3 |
| | |||||
* | maintenance release: | Fredrik Lundh | 2000-07-05 | 1 | -1/+3 |
| | | | | | | | | - reorganized some code to get rid of -Wall and -W4 warnings - fixed default argument handling for sub/subn/split methods (reported by Peter Schneider-Kamp). | ||||
* | Added tests for the new .isalpha() and .isalnum() methods. | Marc-André Lemburg | 2000-07-05 | 2 | -0/+31 |
| | |||||
* | Fixed so the ZIP file (which is bundled into an executable) goes in the | Greg Ward | 2000-07-05 | 1 | -4/+13 |
| | | | | | temporary directory ('bdist_base'). Added --dist-dir option to control where the executable is put. | ||||
* | Added --dist-dir option to control where output archive(s) go. | Greg Ward | 2000-07-05 | 1 | -1/+7 |
| |