Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Got rid of an extraneous semicolon. | Jack Jansen | 2002-06-26 | 1 | -1/+1 |
| | |||||
* | Changed some prototypes to match the exact definition in some faraway Apple | Jack Jansen | 2002-06-26 | 2 | -4/+4 |
| | | | | header files. If we're building with precompiled headers these are in scope. | ||||
* | In plugin projects use (by default) the new mwerks_shcarbon_pch | Jack Jansen | 2002-06-26 | 1 | -1/+1 |
| | | | | header file in stead of mwerks_carbonplugin_config.h. | ||||
* | Close the project after generating it, so we don't keep a gazillion project | Jack Jansen | 2002-06-26 | 1 | -0/+1 |
| | | | | files open when we're rebuilding them all. | ||||
* | - Got rid of non-carbon builds | Jack Jansen | 2002-06-26 | 5 | -0/+0 |
| | | | | | - Use precompiled headers - Rationalize config file names. | ||||
* | Fixed a few showstoppers in the process of making MacPython use setup.py to ↵ | Jack Jansen | 2002-06-26 | 1 | -17/+18 |
| | | | | build it's exension modules (in stead of relying on a private mechanism). It definitely doesn't work yet, but it looks promising. | ||||
* | Fixed various MacPython-specific issues found by attempting to use the ↵ | Jack Jansen | 2002-06-26 | 2 | -4/+37 |
| | | | | standard core setup.py for MacPython. | ||||
* | Apply SF 562987 modernizing Cookie to subclass from dict instead of UserDict | Raymond Hettinger | 2002-06-26 | 1 | -15/+11 |
| | |||||
* | Suppress the variable verbose output from test.xmltests; the inclusion of | Fred Drake | 2002-06-26 | 2 | -15/+3 |
| | | | | timing information in the output makes the determination of success bogus. | ||||
* | Turns out GetArgv() options can be 4-tuples too, with the last value being ↵ | Jack Jansen | 2002-06-26 | 1 | -3/+9 |
| | | | | | | the default (or something like that). Cater for this. Also put in a safeguard against very long help strings. | ||||
* | This module broke on the Mac (where it can't work, but distutils seems to ↵ | Jack Jansen | 2002-06-26 | 1 | -1/+2 |
| | | | | import it anyway) because it imported pwd and grp. Moved the import to inside the routine where they're used. | ||||
* | Add some acks | Andrew M. Kuchling | 2002-06-26 | 1 | -1/+2 |
| | |||||
* | Describe textwrap module | Andrew M. Kuchling | 2002-06-26 | 1 | -2/+35 |
| | |||||
* | Fix bug #573916. Sender and recipients reversed in email example. | Raymond Hettinger | 2002-06-26 | 1 | -2/+2 |
| | |||||
* | Also look up variable names in __builtins__ if not found in globals. | Ka-Ping Yee | 2002-06-26 | 1 | -3/+15 |
| | | | | Don't show hidden fields of exception values (names starting with '_'). | ||||
* | add seealso link to the bisect module | Skip Montanaro | 2002-06-26 | 1 | -0/+4 |
| | |||||
* | add /F's PriorityQueue example | Skip Montanaro | 2002-06-26 | 1 | -1/+19 |
| | |||||
* | Shutdown subprocess debugger and associated Proxies/Adapters when closing | Kurt B. Kaiser | 2002-06-26 | 4 | -41/+80 |
| | | | | | | | | | | | the Idle debugger. M PyShell.py : Call RemoteDebugger.close_remote_debugger() M RemoteDebugger.py: Add close_remote_debugger(); further polish code used to start the debugger sections. M rpc.py : Add comments on Idlefork methods register(), unregister() comment out unused methods M run.py : Add stop_the_debugger(); polish code | ||||
* | Add a reminder | Andrew M. Kuchling | 2002-06-26 | 1 | -0/+2 |
| | |||||
* | Add a reminder | Andrew M. Kuchling | 2002-06-25 | 1 | -1/+3 |
| | |||||
* | Silence compiler warning | Jeremy Hylton | 2002-06-25 | 1 | -1/+1 |
| | |||||
* | Add convenience module to run all the XML tests. | Fred Drake | 2002-06-25 | 2 | -0/+395 |
| | |||||
* | Talk about interfaces rather than implementation classes where appropriate. | Fred Drake | 2002-06-25 | 2 | -42/+60 |
| | | | | | | Add hyperlinks to make the documentation on the Attributes and AttributesNS interfaces more discoverable. Closes SF bug #484603. | ||||
* | Added some more links to the "See also" section. | Fred Drake | 2002-06-25 | 1 | -0/+9 |
| | |||||
* | When talking about interfaces, use the interface names, not the names | Fred Drake | 2002-06-25 | 1 | -1/+1 |
| | | | | of the implementation classes. (Remove the "Impl" from two names.) | ||||
* | Fix typo | Raymond Hettinger | 2002-06-25 | 1 | -1/+1 |
| | |||||
* | Close bug 480337: Dict used before dicts explained. Added explanation | Raymond Hettinger | 2002-06-25 | 1 | -2/+11 |
| | | | | and examples of the dict() constructor. | ||||
* | Close bug 417930 by clarifying augmented assignment docs | Raymond Hettinger | 2002-06-25 | 1 | -0/+14 |
| | |||||
* | Not sure how I forgot to check these in - thought I did all the files in one | Skip Montanaro | 2002-06-25 | 2 | -4/+3 |
| | | | | | fell swoop. Anyway, this just deletes a couple checks for dbm-type header files that are now performed in setup.py. See patch 553108 for details. | ||||
* | Fix SF bug 568269 by enclosing 'computername' in a raw string | Raymond Hettinger | 2002-06-25 | 1 | -1/+1 |
| | |||||
* | Minor English grammar correction | Raymond Hettinger | 2002-06-25 | 1 | -1/+1 |
| | |||||
* | Remove all EditorWindow BREAK tags when closing Debugger | Kurt B. Kaiser | 2002-06-25 | 1 | -0/+8 |
| | |||||
* | Fix spacing in loop example | Raymond Hettinger | 2002-06-25 | 1 | -3/+3 |
| | |||||
* | Fix SF bug 546434 -- buffer slice type inconsistent. | Raymond Hettinger | 2002-06-25 | 2 | -13/+5 |
| | |||||
* | fix incorrect size calc. in IMAP4_SSL.read | Piers Lauder | 2002-06-24 | 1 | -1/+1 |
| | |||||
* | In the Extension() call, add runtime_library_dirs so that a useful | Barry Warsaw | 2002-06-24 | 1 | -0/+10 |
| | | | | | | -R/--rpath flag gets passed to the linker. Source builds of BerkeleyDB do their default installs in locations not normally on ld.so's search path. | ||||
* | Clear associated breakpoints when closing an edit window. | Kurt B. Kaiser | 2002-06-24 | 4 | -66/+78 |
| | | | | | | | | | | M Debugger.py : Added clear_file_breaks() M EditorWindow.py : Clear breaks when closed, commments->docstrings, comment out some debugging print statements M PyShell.py : comments->docstrings ; clarify extending EditorWindow methods. M RemoteDebugger.py: Add clear_all_file_breaks() functionality, clarify some comments. | ||||
* | Fix SF bug 572567: Memory leak in object comparison. | Raymond Hettinger | 2002-06-24 | 3 | -0/+14 |
| | |||||
* | SF # 572928 One word change for lib/libgettext.tex | Neal Norwitz | 2002-06-24 | 1 | -1/+1 |
| | | | | Fix typo. | ||||
* | - Got rid of non-carbon stuff | Jack Jansen | 2002-06-23 | 12 | -181/+25 |
| | | | | | - Use precompiled headers - Rationalized naming scheme | ||||
* | Random tweaks & updates. | Michael W. Hudson | 2002-06-23 | 1 | -12/+13 |
| | |||||
* | Fix IMAP4_SSL read and send methods to take account of short data | Piers Lauder | 2002-06-23 | 1 | -3/+16 |
| | |||||
* | Convert the example C code to ANSI rather than K&R. | Fred Drake | 2002-06-22 | 1 | -19/+17 |
| | | | | | This matches the Python C style guide (PEP 7). Closes SF patch #571489. | ||||
* | Correct the RE equivalent of scanf()'s %x and %X patterns. | Fred Drake | 2002-06-22 | 1 | -1/+1 |
| | | | | Closes SF bug #572169. | ||||
* | Patch #557719 by Tony Lownds, slightly massaged by me: streamline the | Jack Jansen | 2002-06-21 | 6 | -25/+114 |
| | | | | | | | | | OSX framework build process. Things fixed/modified: - the filesystem case-sensitivity test now works for builds outside the source directory - various other fixes for building outside the source directory - python.app now has a target in the main Makefile - WASTE and AquaTk are found more automatically | ||||
* | Typo fix. | Greg Ward | 2002-06-21 | 1 | -1/+1 |
| | |||||
* | Add a check that the bug Jeremy just fixed in _PyTuple_Resize() is | Guido van Rossum | 2002-06-21 | 1 | -0/+5 |
| | | | | | | fixed. (Jeremy, how did you discover that?) | ||||
* | Mention private vars in __slots__. | Guido van Rossum | 2002-06-21 | 1 | -0/+3 |
| | |||||
* | Fix for SF bug 571885 | Jeremy Hylton | 2002-06-20 | 1 | -2/+2 |
| | | | | | When resizing a tuple, zero out the memory starting at the end of the old tuple not at the beginning of the old tuple. | ||||
* | - Got rid of newmodule.c | Jack Jansen | 2002-06-20 | 4 | -3/+1 |
| | | | | - These are the final projects that support classic. |