Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Bug #620630] Flush stdout after logging every message. Without it, | Andrew M. Kuchling | 2002-11-04 | 1 | -0/+3 |
| | | | | | when output is redirected to a file, compiler error messages show up before Distutils prints the command being invoked. | ||||
* | Add get_distutil_options(); future setup.py files can use this to check | Andrew M. Kuchling | 2002-11-04 | 1 | -0/+9 |
| | | | | | | | | whether the Distutils being used supports a particularly capability. (This idea was originally suggested by Juergen Hermann as a method on the Distribution class. I think it makes more sense as a function in core.py, and that's what this patch implements.) | ||||
* | [Bug #570655] Fix misleading option text | Andrew M. Kuchling | 2002-11-04 | 1 | -1/+1 |
| | |||||
* | Patch #630829: Don't block on IAC, process suboptions. | Martin v. Löwis | 2002-11-04 | 4 | -32/+93 |
| | |||||
* | [ 629984 ] Smaller font sizes not supported | Chui Tey | 2002-11-04 | 1 | -1/+1 |
| | |||||
* | 619127: Recent File Menu Not Updating | Chui Tey | 2002-11-04 | 1 | -0/+13 |
| | |||||
* | Add getpreferredencoding. Support @euro modifiers. Fixes #554676. | Martin v. Löwis | 2002-11-03 | 4 | -1/+59 |
| | | | | The @euro part is backported to 2.2.3. | ||||
* | Fix SF #632864, Typo string instead of sting in LibDoc. Will backport. | Neal Norwitz | 2002-11-03 | 1 | -1/+1 |
| | |||||
* | Fix SF # 518775, buffer object API description truncated | Neal Norwitz | 2002-11-03 | 1 | -1/+2 |
| | |||||
* | Fix SF # 631066, running regrtest in user mode fails | Neal Norwitz | 2002-11-03 | 1 | -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 module | Neal Norwitz | 2002-11-03 | 1 | -0/+5 |
| | | | | Will backport. | ||||
* | Add "select all" by clicking on (0,0) cell. | Guido van Rossum | 2002-11-02 | 1 | -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 Norwitz | 2002-11-02 | 1 | -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 Norwitz | 2002-11-02 | 1 | -2/+2 |
| | | | | Cast param to isalnum() to int. | ||||
* | Use O_NONBLOCK rather than O_NDELAY, so we get POSIX non-blocking I/O. | Neal Norwitz | 2002-11-02 | 1 | -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 file | Neal Norwitz | 2002-11-02 | 1 | -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/64bit | Neal Norwitz | 2002-11-02 | 2 | -1/+3 |
| | | | | | Return PyLongs instead ot PyInts. On alphas, 9223372036854775807 became -1. | ||||
* | Remove extra argument in mknod. Fixes #632628. | Martin v. Löwis | 2002-11-02 | 1 | -1/+1 |
| | |||||
* | Need to quote test for posix_threads on HPUX11 | Neal Norwitz | 2002-11-02 | 2 | -3/+3 |
| | |||||
* | Move introductory sentence to where it belongs. | Walter Dörwald | 2002-11-02 | 1 | -3/+3 |
| | |||||
* | Add ESC key binding -- undo current cell editing. | Guido van Rossum | 2002-11-02 | 1 | -12/+19 |
| | |||||
* | Major breakthrough in selection -- drag-select multiple cells now | Guido van Rossum | 2002-11-02 | 1 | -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 Hettinger | 2002-11-02 | 1 | -2/+2 |
| | |||||
* | Update example for the type() function to use the currently accepted | Fred Drake | 2002-11-01 | 1 | -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 Bock | 2002-11-01 | 1 | -0/+2 |
| | |||||
* | patch #624180 (part 2 of 2): | Fredrik Lundh | 2002-11-01 | 1 | -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 TestFailed | Finn Bock | 2002-11-01 | 1 | -3/+3 |
| | | | | exception. | ||||
* | Define abstract way to get the normal and smaller font sizes that work | Fred Drake | 2002-10-31 | 1 | -16/+28 |
| | | | | even in the footnote context. | ||||
* | Add a missing % to a Windows-style environment variable expression. | Fred Drake | 2002-10-31 | 1 | -27/+32 |
| | | | | | Minor style guide compliance fix. Several markup fixes. | ||||
* | Ad test_funky_hyphens() to test some screwy edge cases reported in SF | Greg Ward | 2002-10-31 | 1 | -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 Heller | 2002-10-31 | 1 | -0/+2 |
| | |||||
* | Catch only ImportError | Andrew M. Kuchling | 2002-10-31 | 1 | -1/+1 |
| | |||||
* | Add docstrings to register, lookup, register_error | Walter Dörwald | 2002-10-31 | 1 | -4/+36 |
| | | | | and lookup_error. This closes SF patch #630622. | ||||
* | Make the Distribution() constructor forgiving of unknown keyword | Andrew M. Kuchling | 2002-10-31 | 1 | -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 and | Fred Drake | 2002-10-30 | 1 | -1/+3 |
| | | | | \footnotesize. | ||||
* | Still more magical <link> elements. | Fred Drake | 2002-10-30 | 1 | -1/+18 |
| | |||||
* | Hackish way to generate an up-<link> for the title page if we have | Fred Drake | 2002-10-30 | 1 | -4/+16 |
| | | | | | | one. Added misc. comments. | ||||
* | More <link> support for generated pages. | Fred Drake | 2002-10-30 | 2 | -3/+24 |
| | |||||
* | Two more <link> elements. | Fred Drake | 2002-10-30 | 1 | -0/+2 |
| | |||||
* | Add some relevant <link> elements. | Fred Drake | 2002-10-30 | 2 | -0/+5 |
| | |||||
* | Use personal e-mail address | Andrew M. Kuchling | 2002-10-30 | 4 | -5/+4 |
| | |||||
* | Minor rearranging. | Fred Drake | 2002-10-30 | 1 | -3/+5 |
| | |||||
* | Add notes to the asctime() and ctime() descriptions to make it | Fred Drake | 2002-10-30 | 1 | -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 Drake | 2002-10-30 | 1 | -1/+3 |
| | |||||
* | Added support for --favicon. | Fred Drake | 2002-10-30 | 1 | -2/+15 |
| | | | | Fix support for the Aesop Meta Type. | ||||
* | Added support for --favicon. | Fred Drake | 2002-10-30 | 1 | -1/+7 |
| | |||||
* | Add support for using a "favicon". | Fred Drake | 2002-10-30 | 1 | -16/+20 |
| | | | | make_head_and_body(): Re-arranged to do (slightly) less work for each page. | ||||
* | Make use of the new "favicon" image. | Fred Drake | 2002-10-30 | 2 | -0/+2 |
| | |||||
* | Added "favicon" image. | Fred Drake | 2002-10-30 | 1 | -0/+0 |
| | |||||
* | Added missing class to __all__. | Raymond Hettinger | 2002-10-30 | 1 | -1/+1 |
| |