summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add getpreferredencoding. Support @euro modifiers. Fixes #554676.Martin v. Löwis2002-11-034-1/+59
| | | | The @euro part is backported to 2.2.3.
* Fix SF #632864, Typo string instead of sting in LibDoc. Will backport.Neal Norwitz2002-11-031-1/+1
|
* Fix SF # 518775, buffer object API description truncatedNeal Norwitz2002-11-031-1/+2
|
* Fix SF # 631066, running regrtest in user mode failsNeal Norwitz2002-11-031-1/+21
| | | | | | Try to write to TESTFN, if that fails, try TESTFN in /tmp If that fails, print a warning and go on. Will backport.
* Fix SF #618146, overflow error in calendar moduleNeal Norwitz2002-11-031-0/+5
| | | | Will backport.
* Add "select all" by clicking on (0,0) cell.Guido van Rossum2002-11-021-19/+40
| | | | | Redo setting the selection and setting the beacon to deal better with rows or columns -- these are now expressed by range (1, sys.maxint).
* Fix SF # 551504, python -v sometimes fails to find init (HPUX)Neal Norwitz2002-11-021-1/+1
| | | | | Joseph Winston recommends removing DYNAMIC_PATH, since it can cause some dynamic libraries to not load on HP-UX 11.
* Fix compiler warning on HP-UX.Neal Norwitz2002-11-021-2/+2
| | | | Cast param to isalnum() to int.
* Use O_NONBLOCK rather than O_NDELAY, so we get POSIX non-blocking I/O.Neal Norwitz2002-11-021-4/+4
| | | | | | | | | | | | | On HPUX, Solaris, Tru64 (Dec UNIX), and IRIX (I think), O_NONBLOCK is the POSIX version of non-blocking I/O which is what we want. On Linux and FreeBSD (at least), O_NONBLOCK and O_NDELAY are the same. So this change should have no negative effect on those platforms. Tested on Linux, Solaris, HPUX. Thanks to Anders Qvist for diagnosing this problem.
* Skip test_dbm if we can't write to the fileNeal Norwitz2002-11-021-31/+43
| | | | | Cleanup (remove) the file(s) after we are done with the test. (Fixes problem on snake farm)
* Fix SF #632624, test_resource failure on alpha/64bitNeal Norwitz2002-11-022-1/+3
| | | | | Return PyLongs instead ot PyInts. On alphas, 9223372036854775807 became -1.
* Remove extra argument in mknod. Fixes #632628.Martin v. Löwis2002-11-021-1/+1
|
* Need to quote test for posix_threads on HPUX11Neal Norwitz2002-11-022-3/+3
|
* Move introductory sentence to where it belongs.Walter Dörwald2002-11-021-3/+3
|
* Add ESC key binding -- undo current cell editing.Guido van Rossum2002-11-021-12/+19
|
* Major breakthrough in selection -- drag-select multiple cells nowGuido van Rossum2002-11-021-10/+87
| | | | | works. Also row and column selection works (sort of). The DEL key deletes the selected rectangle. sys.argv[1] used by test_gui().
* Correct erroneous parenthesis placement in the delta from 1.63 to 1.64.Raymond Hettinger2002-11-021-2/+2
|
* Update example for the type() function to use the currently acceptedFred Drake2002-11-011-2/+13
| | | | | | | preference of using "is" instead of "==" to compare types, use built-in names where available, and point to the isinstance() function. Closes SF bug #632196.
* Patch #631972: Adds an is_jython flag.Finn Bock2002-11-011-0/+2
|
* patch #624180 (part 2 of 2):Fredrik Lundh2002-11-011-1/+1
| | | | | use unquote on authentication strings, to allow users to embed @ and : in user names and passwords (from Phillip Eby)
* [SF bug 631713] use the import exeption message in the TestFailedFinn Bock2002-11-011-3/+3
| | | | exception.
* Define abstract way to get the normal and smaller font sizes that workFred Drake2002-10-311-16/+28
| | | | even in the footnote context.
* Add a missing % to a Windows-style environment variable expression.Fred Drake2002-10-311-27/+32
| | | | | Minor style guide compliance fix. Several markup fixes.
* Ad test_funky_hyphens() to test some screwy edge cases reported in SFGreg Ward2002-10-311-5/+18
| | | | | | | bug #596434. (Alas, I don't think this completely covers that bug.) Remove 'wrapper' argument from BaseTestCase.check_split() -- it's not actually needed.
* Fixes SF bug#614051: win32 build_ext problem.Thomas Heller2002-10-311-0/+2
|
* Catch only ImportErrorAndrew M. Kuchling2002-10-311-1/+1
|
* Add docstrings to register, lookup, register_errorWalter Dörwald2002-10-311-4/+36
| | | | and lookup_error. This closes SF patch #630622.
* Make the Distribution() constructor forgiving of unknown keywordAndrew M. Kuchling2002-10-311-2/+11
| | | | | | | | | | arguments, triggering a warning instead of raising an exception. (In 1.5.2/2.0, it will print to stderr.) Bugfix candidate for all previous versions. This changes behaviour, but the old behaviour wasn't very useful. If Distutils version X+1 adds a new keyword argument, using the new keyword means your setup.py file won't work with Distutils version X any more.
* Add a couple of comments about the use of \normalsize andFred Drake2002-10-301-1/+3
| | | | \footnotesize.
* Still more magical <link> elements.Fred Drake2002-10-301-1/+18
|
* Hackish way to generate an up-<link> for the title page if we haveFred Drake2002-10-301-4/+16
| | | | | | one. Added misc. comments.
* More <link> support for generated pages.Fred Drake2002-10-302-3/+24
|
* Two more <link> elements.Fred Drake2002-10-301-0/+2
|
* Add some relevant <link> elements.Fred Drake2002-10-302-0/+5
|
* Use personal e-mail addressAndrew M. Kuchling2002-10-304-5/+4
|
* Minor rearranging.Fred Drake2002-10-301-3/+5
|
* Add notes to the asctime() and ctime() descriptions to make itFred Drake2002-10-301-0/+2
| | | | | explicit that locale information is not used. There wasn't anything that implied it was, but this has confused users.
* Sprinkle with --favicon options.Fred Drake2002-10-301-1/+3
|
* Added support for --favicon.Fred Drake2002-10-301-2/+15
| | | | Fix support for the Aesop Meta Type.
* Added support for --favicon.Fred Drake2002-10-301-1/+7
|
* Add support for using a "favicon".Fred Drake2002-10-301-16/+20
| | | | make_head_and_body(): Re-arranged to do (slightly) less work for each page.
* Make use of the new "favicon" image.Fred Drake2002-10-302-0/+2
|
* Added "favicon" image.Fred Drake2002-10-301-0/+0
|
* Added missing class to __all__.Raymond Hettinger2002-10-301-1/+1
|
* Added __all__.Raymond Hettinger2002-10-301-0/+2
|
* Added missing names to __all__.Raymond Hettinger2002-10-301-1/+1
|
* Added new move() function to __all__.Raymond Hettinger2002-10-301-1/+1
|
* SF bug 630824: pydoc Helper keywords missing 'yield'Tim Peters2002-10-301-0/+1
| | | | | | | Wow, what a brittle subsystem! Fixed, maybe, provided Fred doesn't shuffle the docs around. Bugfix candidate.
* Patrick K. O'Brien notices that kwlist was missing from __all__.Raymond Hettinger2002-10-301-1/+1
| | | | Added because it is part of the documented interface.
* Forward port of 1.12.14.3 (which has an incorrect log message):Jack Jansen2002-10-291-1/+4
| | | | | | | if SetDates() in touched() returns an error ignore it: the user may not have permission to change the parent folder. This is a non-serious problem, the only function of touched() is to speed up the finder seeing the change.