Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - On OSX add -no-cpp-precomp to OPT. The user still has to manually specify | Jack Jansen | 2001-08-03 | 2 | -355/+365 |
| | | | | | | | | | | the --with-suffix=.exe, but it seems that that is also true for cygwin (or not? should I automatically set it?) - Got --with-next-framework to build on OSX. This is only the build bit, the install still has to be done manually. Moreover, the Python build order isn't really suited to frameworks (where you want to do 'build lib', 'install lib and framework', 'link executable against installed framework' in that order). | ||||
* | ICFindConfigFile isn't needed, and it's gone under carbon. | Jack Jansen | 2001-08-03 | 1 | -2/+3 |
| | |||||
* | EasyDialogs has a working version of this. | Jack Jansen | 2001-08-03 | 1 | -25/+0 |
| | |||||
* | These stopped working a long time ago, and they're not worth fixing. | Jack Jansen | 2001-08-03 | 2 | -132/+0 |
| | |||||
* | Obsolete, EasyDialogs has the same code (but working:-). | Jack Jansen | 2001-08-03 | 2 | -72/+0 |
| | |||||
* | Obsolete: uses old applescript support. | Jack Jansen | 2001-08-03 | 1 | -33/+0 |
| | |||||
* | Obsolete, uses the old non-package-based applescript suite support. | Jack Jansen | 2001-08-03 | 1 | -25/+0 |
| | |||||
* | This "test" showed an obsolete way to get scrolled lists in dialogs. Removed. | Jack Jansen | 2001-08-03 | 1 | -79/+0 |
| | |||||
* | This "test" showed an obsolete way to get scrolled lists in dialogs. Removed. | Jack Jansen | 2001-08-03 | 2 | -3/+2 |
| | |||||
* | Removed: it doesn't work anymore, and it wasn't all that useful anyway. The ↵ | Jack Jansen | 2001-08-03 | 1 | -68/+0 |
| | | | | FrameWork testcode shows similar functionality. | ||||
* | Obsolete, superseded by :Mac:Demo:imgbrowse and friends. | Jack Jansen | 2001-08-03 | 1 | -86/+0 |
| | |||||
* | Obsolete, superseded by :Mac:Demo:TE | Jack Jansen | 2001-08-03 | 1 | -81/+0 |
| | |||||
* | Obsolete, superseded by :Mac:Demo:waste | Jack Jansen | 2001-08-03 | 1 | -86/+0 |
| | |||||
* | Obsolete, removed. | Jack Jansen | 2001-08-03 | 19 | -8502/+0 |
| | |||||
* | Merging appropriate 2.1.1 fixes back into the main trunk. | Jack Jansen | 2001-08-03 | 26 | -122/+162 |
| | |||||
* | Documented the runtimemodel attribute. | Jack Jansen | 2001-08-03 | 1 | -0/+6 |
| | |||||
* | (Finally) converted to new-style args. | Jack Jansen | 2001-08-03 | 1 | -37/+136 |
| | | | | | | | Added an optional (and ignored) 3d parameter to open() to make the signature compatible with posixmodule. Added the various O_ constants (by stealing the code from posixmodule). test_fileinput now passes. | ||||
* | Added descrobject.c and mysnprintf.c | Jack Jansen | 2001-08-03 | 2 | -0/+0 |
| | |||||
* | Regenerated for new description stuff. | Jack Jansen | 2001-08-03 | 2 | -326/+456 |
| | |||||
* | The test opened the binary test data files in text mode! Fixed. | Jack Jansen | 2001-08-03 | 1 | -3/+3 |
| | |||||
* | Removed duplicate definnitions of PyObject_AS_GC and PyObject_FROM_GC ↵ | Jack Jansen | 2001-08-03 | 1 | -2/+0 |
| | | | | (occurred only if GC was off). | ||||
* | No more Inno Envy: the "Start Installation" dialog now displays a nice | Tim Peters | 2001-08-03 | 1 | -7/+152 |
| | | | | | | summary of the preceding choices. No idea if this is "the right way" to do it, but it's exactly painful enough to make me suspect it's the only way <wink>. | ||||
* | Do not use the system getaddrinfo on Mac OS X. Fixes bug #445928. | Martin v. Löwis | 2001-08-03 | 1 | -6/+16 |
| | | | | Since getnameinfo is not implemented, remove __APPLE__ check here. | ||||
* | further work on config dialog, particularly highligthing config | Steven M. Gava | 2001-08-03 | 1 | -34/+146 |
| | |||||
* | Make sure that WeakValueDictionary[] raises KeyError instead of TypeError | Fred Drake | 2001-08-03 | 2 | -1/+6 |
| | | | | for keys that are not in the dictionary. | ||||
* | Fix some of the example code; the reference objects do not support a | Fred Drake | 2001-08-03 | 1 | -3/+3 |
| | | | | | | | get() method; just calling them is sufficient. (There was a get() method for this in an early version of the implementation.) Reported by Mats Wichmann. | ||||
* | Finish my log of the final merge process. Mark the merge task complete. | Tim Peters | 2001-08-02 | 1 | -5/+23 |
| | |||||
* | User-defined methods *can* contain things other than user-defined functions | Fred Drake | 2001-08-02 | 1 | -1/+2 |
| | | | | as the callable, so use more flexible language. | ||||
* | Add a caveat about boundary conditions and RE concatenation, so that the | Fred Drake | 2001-08-02 | 1 | -9/+12 |
| | | | | | | | documents do not make an overly-strong assertion about the properties of RE concatenation. Add an example of RE{m,} syntax and what it will and will not match. | ||||
* | Miscellaneous minor cleanups. | Fred Drake | 2001-08-02 | 1 | -20/+21 |
| | |||||
* | 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 |
| |