Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move away from apply() to using extended call syntax for some example | Fred Drake | 2001-08-02 | 1 | -3/+19 |
| | | | | | | | fragments when discussing equivalence of thhe C API to what a Python programmer sees. Added descriptions of PyEval_SetProfile() and PyEval_SetTrace(). | ||||
* | This test failed under python -O. | Tim Peters | 2001-08-02 | 1 | -3/+7 |
| | | | | | rewrite_file(): Delete both .pyc and .pyo leftovers, and explicitly close the new source file after writing to it. | ||||
* | Explain that __init__() methods do not get to return values. | Fred Drake | 2001-08-02 | 1 | -8/+9 |
| | |||||
* | Fix SF #442791 (revisited): No __delitem__ wrapper was defined. | Guido van Rossum | 2001-08-02 | 1 | -0/+35 |
| | |||||
* | Add anentry for the distutils.sysconfig module docs. | Fred Drake | 2001-08-02 | 1 | -1/+3 |
| | |||||
* | Update some incorrect comments about the bdist commands that exist. | Fred Drake | 2001-08-02 | 1 | -4/+7 |
| | | | | Add an entry for the distutils.sysconfig module docs. | ||||
* | Documentation for the distutils.sysconfig module. | Fred Drake | 2001-08-02 | 1 | -0/+113 |
| | |||||
* | Unit test for improved package import semantics. | Guido van Rossum | 2001-08-02 | 1 | -0/+74 |
| | | | | | Original by Alex Coventry (in SF patch #441791), adapted to the standard regression test framework. | ||||
* | Patch #444359: Remove unused imports. | Martin v. Löwis | 2001-08-02 | 8 | -9/+2 |
| | |||||
* | Take MANDIR and INCLUDEDIR from configure. Fixes bug #446671. | Martin v. Löwis | 2001-08-02 | 1 | -2/+2 |
| | |||||
* | Fix the test_weakref.py failure. Introduced by resolving "a conflict" | Tim Peters | 2001-08-02 | 1 | -7/+0 |
| | | | | (which didn't actually exist!) incorrectly. | ||||
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 57 | -1312/+6926 |
| | |||||
* | Cleaned up the docstring for readline.set_completer(). | Fred Drake | 2001-08-01 | 1 | -1/+1 |
| | | | | Thanks to Nathaniel Gray for reporting the confusion. | ||||
* | Cleaned up the description of readline.set_completer(). | Fred Drake | 2001-08-01 | 1 | -4/+7 |
| | | | | Thanks to Nathaniel Gray for reporting the confusion. | ||||
* | s/endswith/startswith/ | Tim Peters | 2001-08-01 | 1 | -1/+1 |
| | |||||
* | Rewritten version of Finn Bock's SF patch #446907 (Allow jython to | Tim Peters | 2001-08-01 | 1 | -1/+4 |
| | | | | complete test_import). | ||||
* | Just changes to comments. | Tim Peters | 2001-08-01 | 2 | -3/+3 |
| | |||||
* | Repair more ways in which the "backup files" dialog differed from all the | Tim Peters | 2001-08-01 | 1 | -29/+28 |
| | | | | | others (wrong title, inconsistent layout). Also tried to make the dialog text clearer, and spelled out what the "yes" and "no" buttons *mean*. | ||||
* | Turn an octal constant into a hex constant. | Guido van Rossum | 2001-08-01 | 1 | -1/+1 |
| | |||||
* | Added more names. | Fred Drake | 2001-08-01 | 1 | -0/+2 |
| | |||||
* | Minor re-wording in the exaplantion of sequence comparisons. | Fred Drake | 2001-08-01 | 1 | -3/+4 |
| | | | | This closes SF bug #445749. | ||||
* | Added an example of a string value for the replacement parameter to | Fred Drake | 2001-08-01 | 1 | -44/+60 |
| | | | | | | | | | re.sub(). This closes SF bug #446136. Fixed description of RE modifiers so that RE{#} and RE{#,} are more clearly described and disambiguated (plain RE{#} had not been described at all). Reported by Jeremy Craven via email. | ||||
* | Fix description of buffer_info(), and add a note that there is a better | Fred Drake | 2001-08-01 | 1 | -6/+15 |
| | | | | | | way... This closes SF bug #444842. | ||||
* | We always wrote a pair of lines to the Wise install.log telling it to | Tim Peters | 2001-08-01 | 1 | -16/+19 |
| | | | | | | | | | | | | delete the Tools and Lib directories at uninstall time. However, under the old version of Wise, they didn't actually do anything. Under the new version, they work as advertised, and even delete files users added. Got rid of those, and replaced them with similar uninstall cmds that get rid of all .pyc and .pyo files (whether or not the installer created them). This works nicely! It still tears down the directory structure, except for those directories needed to get to any non-.pyc/o file(s) the user may have added. | ||||
* | Hmm. The Backup/Replace dialog also had back/next buttons three pixels | Tim Peters | 2001-08-01 | 1 | -5/+5 |
| | | | | | | narrower than all the other Wise dialogs, and offset by a few pixels in the vertical direction too. Made these things consistent across dialogs too. | ||||
* | Aha! Finally figured out something else that's been driving me nuts: | Tim Peters | 2001-08-01 | 1 | -2/+2 |
| | | | | | | | | | turns out the canned new "backup directory" dialog put its "back" and "next" buttons at a different relative horizontal position than all the other canned dialogs. This explains why you had to keep moving the mouse around if you wanted to do a straight all-default install -- the Next button kept moving around. Now the back/next buttons are in exactly the same place on all dialogs, and you can click straight thru to the end. | ||||
* | The "Select Destination Directory" dialog didn't ask for confirmation | Tim Peters | 2001-08-01 | 1 | -45/+12 |
| | | | | | | | | | | | | | about installing into a pre-existing directory *unless* you hit the Browse button first. At least while testing, this screwed me repeatedly. Plus I really liked the Inno Setup scheme of giving you a list box in its "select directory" dialog without needing a distinct browse button to ask for that. So I redid this dialog from scratch: now gives a list box at once, the browse button is gone, it asks for confirmation if the directory already exists, and, since this is the first dialog in the set now, also removed its "Back" button. | ||||
* | Remove useless Back button from Finished dialog. | Tim Peters | 2001-08-01 | 1 | -16/+5 |
| | |||||
* | Add mysnprintf.c to Windows build, + squash compiler wngs in mysnprintf.c. | Tim Peters | 2001-07-31 | 2 | -2/+18 |
| | |||||
* | Enable PyOS_snprintf() et al. during alpha phase of 2.2.0 and | Marc-André Lemburg | 2001-07-31 | 2 | -10/+9 |
| | | | | add another use case to the socketmodule. | ||||
* | Move C-level changes into a section of their own | Andrew M. Kuchling | 2001-07-31 | 1 | -36/+64 |
| | | | | | Add string.ascii_letters Remove duplicate MBCS paragraph | ||||
* | Moved the news items about C API topics down to the C API section. | Marc-André Lemburg | 2001-07-31 | 1 | -12/+12 |
| | |||||
* | Add news item about Unicode API name mangling. | Marc-André Lemburg | 2001-07-31 | 1 | -0/+7 |
| | |||||
* | As discussed on python-dev: this patch adds name mangling to | Marc-André Lemburg | 2001-07-31 | 1 | -0/+150 |
| | | | | | assure that extensions and interpreters using the Unicode APIs were compiled using the same Unicode width. | ||||
* | Add news items. | Marc-André Lemburg | 2001-07-31 | 1 | -0/+11 |
| | |||||
* | va_list is defined in stdarg.h. | Marc-André Lemburg | 2001-07-31 | 1 | -0/+1 |
| | |||||
* | This patch turns the Python API mismatch notice into a standard | Marc-André Lemburg | 2001-07-31 | 4 | -5/+124 |
| | | | | | | | | | | | | Python warning which can be catched by means of the Python warning framework. It also adds two new APIs which hopefully make it easier for Python to switch to buffer overflow safe [v]snprintf() APIs for error reporting et al. The two new APIs are PyOS_snprintf() and PyOS_vsnprintf() and work just like the standard ones in many C libs. On platforms which have snprintf(), the native APIs are used, on all other an emulation with snprintf() tries to do its best. | ||||
* | A more lightweight (and read only) way to view help text | Steven M. Gava | 2001-07-31 | 1 | -38/+4 |
| | | | | | until the new help system is implemented. Removed some commented cruft. | ||||
* | indentation style changed to match existing source | Steven M. Gava | 2001-07-31 | 2 | -174/+174 |
| | |||||
* | improve viewfile handling | Steven M. Gava | 2001-07-31 | 1 | -113/+118 |
| | | | | indentation style changed to match existing source | ||||
* | Add dead imports of modules that are "magically" imported. | Martin v. Löwis | 2001-07-31 | 2 | -0/+11 |
| | |||||
* | Remove obsolete entries from regen scripts. | Martin v. Löwis | 2001-07-31 | 14 | -40/+1 |
| | |||||
* | Initialize msg to avoid unbound locals. | Martin v. Löwis | 2001-07-31 | 5 | -0/+6 |
| | |||||
* | activate new about dialog for testing | Steven M. Gava | 2001-07-31 | 1 | -5/+7 |
| | |||||
* | removed redundant separate idlfefork ver | Steven M. Gava | 2001-07-31 | 1 | -2/+1 |
| | |||||
* | some new dialogs and support files for new about and configuration ↵ | Steven M. Gava | 2001-07-31 | 4 | -0/+365 |
| | | | | implementations | ||||
* | New name. | Guido van Rossum | 2001-07-31 | 1 | -0/+1 |
| | |||||
* | Amazing. This would open the sound file in text mode. Fixed. | Guido van Rossum | 2001-07-31 | 1 | -1/+1 |
| | | | | SF bug #446219. | ||||
* | I hope this irons out the Add/Remove kinks on Win2K for users w/o Admin | Tim Peters | 2001-07-31 | 2 | -9/+57 |
| | | | | privs, but haven't tested that yet. Doesn't hurt on Win98SE, anyway. | ||||
* | Rewrite MBCS paragraph following MH's suggestions, and credit him | Andrew M. Kuchling | 2001-07-31 | 1 | -1/+12 |
| | | | | Note new Windows installer |