Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Test case of a singleton multipart; i.e. a multipart/* with only one | Barry Warsaw | 2002-01-27 | 1 | -0/+8 |
| | | | | subpart. | ||||
* | test_multipart_one_part(): Idempotency test case for a multipart/* | Barry Warsaw | 2002-01-27 | 1 | -1/+5 |
| | | | | with only one subpart. | ||||
* | _parsebody(): When adding subparts to a multipart container, make sure | Barry Warsaw | 2002-01-27 | 1 | -2/+7 |
| | | | | | | that the first subpart added makes the payload a list object. Otherwise, a multipart/* with only one subpart will not have the proper structure. | ||||
* | further work on saving configs | Steven M. Gava | 2002-01-24 | 3 | -47/+165 |
| | |||||
* | dialog for getting a new config file section name | Steven M. Gava | 2002-01-24 | 1 | -0/+99 |
| | |||||
* | staying current with python idle fixes | Steven M. Gava | 2002-01-23 | 1 | -2/+2 |
| | |||||
* | fix for python2.2 -Qnew division error, | Steven M. Gava | 2002-01-23 | 1 | -1/+1 |
| | | | | thanks Tim! | ||||
* | more on config saving | Steven M. Gava | 2002-01-22 | 1 | -16/+30 |
| | |||||
* | further work on config saving | Steven M. Gava | 2002-01-22 | 2 | -30/+107 |
| | |||||
* | extension config reading by configDialog and | Steven M. Gava | 2002-01-21 | 3 | -134/+173 |
| | | | | beginning of configuration saving | ||||
* | changeover to new keybinding configuration implementation | Steven M. Gava | 2002-01-19 | 11 | -109/+50 |
| | |||||
* | further work on keybinding configuration | Steven M. Gava | 2002-01-19 | 3 | -15/+123 |
| | |||||
* | keybinding configuration | Steven M. Gava | 2002-01-19 | 2 | -13/+31 |
| | |||||
* | keybinding configuration | Steven M. Gava | 2002-01-19 | 5 | -72/+110 |
| | |||||
* | SWIGing a source file <name>.i silently overwrites <name>.c if it is | Thomas Heller | 2002-01-18 | 1 | -2/+2 |
| | | | | | | | | | | | | | | present - at least the swigged file should be named <name>_wrap.c as this is also SWIG's default. (Even better would be to generate the wrapped sources in a different location, but I'll leave this for later). Newer versions of SWIG don't accept the -dnone flag any more. Since virtually nobody uses SWIG with distutils, this should do no harm. Suggested be Martin Bless on c.l.p. | ||||
* | Allow abspath to still do something sensisble if the nt module can not be ↵ | Mark Hammond | 2002-01-17 | 1 | -1/+11 |
| | | | | imported. | ||||
* | Disable code intended for PEP 277. | Guido van Rossum | 2002-01-15 | 1 | -5/+6 |
| | |||||
* | Only test ntpath.abspath() on Windows. This allows the rest of the module to | Fred Drake | 2002-01-15 | 1 | -2/+12 |
| | | | | be tested regardless of the host platform. | ||||
* | Patch #414775: Add --skip-build option to bdist command. | Martin v. Löwis | 2002-01-12 | 3 | -3/+18 |
| | |||||
* | key binding handling dialog | Steven M. Gava | 2002-01-12 | 1 | -0/+208 |
| | |||||
* | Add a per-message fallback mechanism for translations. | Martin v. Löwis | 2002-01-11 | 1 | -13/+50 |
| | |||||
* | Add fallback argument to translation(). Request fallbacks on install. | Martin v. Löwis | 2002-01-11 | 1 | -2/+5 |
| | | | | Fixes #500595. | ||||
* | Fix webbrowser.py security bug: be more careful about what we pass to | Fred Drake | 2002-01-07 | 1 | -12/+15 |
| | | | | | os.system(). This closes Python bug #500401, Debian bug #127507. | ||||
* | Ensure Unicode filenames work with glob - they already do, but the test ↵ | Mark Hammond | 2002-01-07 | 1 | -1/+9 |
| | | | | seems worth keeping. | ||||
* | Restore Python 2.1 StringIO.py behaviour: support concatenating | Marc-André Lemburg | 2002-01-06 | 2 | -5/+23 |
| | | | | | | Unicode string snippets to larger Unicode strings. This fix should also go into Python 2.2.1. | ||||
* | Time2Internaldate(): Call isinstance() once for each of the type tests | Fred Drake | 2002-01-05 | 1 | -4/+4 |
| | | | | | instead of possibly twice by using a sequence of types to check for. Add a message to the ValueError that can be raised. | ||||
* | Remove unused imports, clean up trailing whitespace. | Fred Drake | 2002-01-05 | 1 | -2/+0 |
| | |||||
* | Check for time.struct_time in addition to tuples. Use 3 characters | Martin v. Löwis | 2002-01-05 | 2 | -5/+19 |
| | | | | for zone hours. Fixes #499169. | ||||
* | loading core keybindings via new config system plus | Steven M. Gava | 2002-01-04 | 8 | -31/+40 |
| | | | | further devel of highlight handling | ||||
* | move core functionality of SearchBindings.py into EditorWindow.py proper | Steven M. Gava | 2002-01-04 | 7 | -139/+69 |
| | | | | | adjust configuration sources accordingly move SearchBindings.py into the attic now | ||||
* | further development of highlighting and editor preference handling, | Steven M. Gava | 2002-01-03 | 5 | -64/+153 |
| | | | | plus misc fixes cleanups for new config system | ||||
* | remove futzing with text font | Steven M. Gava | 2002-01-03 | 1 | -20/+10 |
| | |||||
* | fixups and improvements | Steven M. Gava | 2002-01-03 | 1 | -2/+3 |
| | |||||
* | moving to new config system | Steven M. Gava | 2002-01-03 | 1 | -15/+19 |
| | |||||
* | Fix typo in label | Andrew M. Kuchling | 2002-01-02 | 1 | -1/+1 |
| | |||||
* | SF Patch #494867 test file methods | Neal Norwitz | 2002-01-01 | 1 | -0/+29 |
| | | | | | | Test that the file methods raise ValueError when called on a closed file. Test .isatty() Test name, closed attributes | ||||
* | Print encoded versions of the file names in test application. Fixes #496084 | Martin v. Löwis | 2001-12-30 | 1 | -2/+16 |
| | |||||
* | test_support: add a docstring to vereq(). | Tim Peters | 2001-12-29 | 2 | -2/+11 |
| | | | | test_complex: repair new test's usage of vereq(). | ||||
* | SF Patch #497487 add test to compare conjugate of a complex number | Neal Norwitz | 2001-12-29 | 1 | -1/+4 |
| | |||||
* | SF Patch #494873 add tests for complex numbers including calls to int()/long() | Neal Norwitz | 2001-12-29 | 1 | -0/+21 |
| | |||||
* | SF Patch #494874 add tests for int()/long() invalid parameters | Neal Norwitz | 2001-12-29 | 1 | -0/+23 |
| | |||||
* | SF Patch #494872 test repr() of a built-in module | Neal Norwitz | 2001-12-29 | 1 | -0/+1 |
| | |||||
* | SF Patch #494876, test invalid parameters to pow() | Neal Norwitz | 2001-12-29 | 1 | -0/+20 |
| | |||||
* | Thread.__bootstrap(): ignore exceptions in the self.__delete() call in | Guido van Rossum | 2001-12-28 | 1 | -1/+4 |
| | | | | | | | | | | | | the finally clause. An exception here could happen when a daemon thread exits after the threading module has already been trashed by the import finalization, and there's not much of a point in trying to insist doing the cleanup in that stage. This should fix SF bug ##497111: active_limbo_lock error at program exit. 2.1.2 and 2.2.1 Bugfix candidate! | ||||
* | Fix for SF bug ##497426: can't deepcopy recursive new objects | Guido van Rossum | 2001-12-28 | 1 | -1/+10 |
| | | | | | | | | deepcopy(), _reconstruct(): pass the memo to the other function, so that recursive data structures built out of new-style objects may be deeply copied correctly. 2.2.1 bugfix! | ||||
* | Fix for SF bug ##497426: can't deepcopy recursive new objects | Guido van Rossum | 2001-12-28 | 1 | -4/+6 |
| | | | | | | | | deepcopy(), _reconstruct(): pass the memo to the other function, so that recursive data structures built out of new-style objects may be deeply copied correctly. 2.2.1 bugfix! | ||||
* | Update the docstring too. :-) | Guido van Rossum | 2001-12-28 | 1 | -1/+1 |
| | |||||
* | SF patch #497420 (Eduardo Pérez): ftplib: ftp anonymous password | Guido van Rossum | 2001-12-28 | 1 | -13/+8 |
| | | | | | | Instead of sending the real user and host, use "anonymous@" (i.e. no host name at all!) as the default anonymous FTP password. This avoids privacy violations. | ||||
* | _reduce(): Avoid infinite recursion in the pickler when self.__class__ | Guido van Rossum | 2001-12-27 | 1 | -0/+2 |
| | | | | | | | | doesn't have the _HEAPTYPE flag set, e.g. for time.struct_time and posix.stat_result. This fixes the immediate symptoms of SF bug #496873 (cPickle / time.struct_time loop), replacing the infinite loop with an exception. | ||||
* | Don't set passiveserver to 0 in connect(). See SF bug #495693. | Guido van Rossum | 2001-12-23 | 1 | -1/+0 |
| | | | | | This should definitely be backported to 2.2.1. I'll leave it to Jack to decide whether he wants to fix this in MacPython 2.2. |