Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | (py-execute-region): Do the blank line skipping inside the | Barry Warsaw | 2002-05-12 | 1 | -8/+7 |
| | | | | | save-excursion so that when the function is complete, point is preserved. | ||||
* | SF bug 555042: zip() may trigger MemoryError. | Tim Peters | 2002-05-12 | 2 | -3/+18 |
| | | | | | NOT a bugfix candidate: this is a fix to an optimization introduced in 2.3. | ||||
* | Noted change in ftplib 1.68 closing SF patch 553277. | Raymond Hettinger | 2002-05-12 | 1 | -0/+7 |
| | |||||
* | Closes SF patch 553277. Per GvR, reverting to original patch -- the way to | Raymond Hettinger | 2002-05-12 | 1 | -1/+1 |
| | | | | | | test if 'callable' has not been supplied is to test for None instead of False. The previous correction to 'if callable()' was wrong because an unusable callback would be ignored rather than raising an exception. | ||||
* | Closes SF patch: 552468. | Raymond Hettinger | 2002-05-12 | 1 | -4/+2 |
| | | | | Type class unification invalidated the statement: x.__getitem__[i] is not equivalent to x[i]. | ||||
* | Fix typo: ptread --> pthread | Fred Drake | 2002-05-11 | 1 | -1/+1 |
| | | | | Closes SF bug #554644. | ||||
* | - Get data from CFData objects as Python strings and vv. | Jack Jansen | 2002-05-10 | 2 | -1/+34 |
| | | | | - Started on supporting CFPropertyLists. | ||||
* | Use isinstance() in preference to comparison of type by is. | Jeremy Hylton | 2002-05-10 | 1 | -2/+2 |
| | |||||
* | Give the enumerate() PEP a section of its own | Andrew M. Kuchling | 2002-05-10 | 1 | -36/+50 |
| | | | | | Add some credits Fill in a link | ||||
* | [from Oct 2000] | Greg Ward | 2002-05-10 | 1 | -9/+202 |
| | | | | Start fleshing out the "Examples" section. | ||||
* | [from Oct 2000] | Greg Ward | 2002-05-10 | 1 | -2/+4 |
| | | | | The zipfile module has been in the standard library for some time now. | ||||
* | [from Oct 2000] | Greg Ward | 2002-05-10 | 1 | -14/+18 |
| | | | | Clarify explanations of header file search directories. | ||||
* | Fix markup error that suppressed space. | Fred Drake | 2002-05-10 | 1 | -1/+1 |
| | | | | Closes SF bug #554257. Not relevant to older releases. | ||||
* | Fix typo | Andrew M. Kuchling | 2002-05-09 | 1 | -1/+1 |
| | |||||
* | Fixed string and dict conversion, and implemented booleans and numbers (int ↵ | Jack Jansen | 2002-05-08 | 1 | -14/+49 |
| | | | | | | and float). I think we now have enough CFType support to start on plists and CFpreferences! Transparent handling of unknown CFType objects still TBD. | ||||
* | Partial fix for string handling. Null byte TBD. | Jack Jansen | 2002-05-08 | 1 | -2/+4 |
| | |||||
* | Remove news about PyMalloc_*. Do we need to say anything about | Neil Schemenauer | 2002-05-08 | 1 | -6/+1 |
| | | | | pymalloc? | ||||
* | Updates and rewriting | Andrew M. Kuchling | 2002-05-08 | 1 | -110/+112 |
| | |||||
* | Patch #553230: Create LIBDIR if necessary. Bugfix candidate. | Martin v. Löwis | 2002-05-08 | 1 | -1/+1 |
| | |||||
* | Patch #553277: Accept callbacks that are callable, not callbacks that are true. | Martin v. Löwis | 2002-05-08 | 2 | -1/+2 |
| | |||||
* | Patch #553403: Fix typo. | Martin v. Löwis | 2002-05-08 | 2 | -3/+3 |
| | |||||
* | Patch #551410: Implement tp_getiter. | Martin v. Löwis | 2002-05-08 | 1 | -1/+51 |
| | |||||
* | Patch #552433: Special-case tuples. Avoid sub-type checking for lists. | Martin v. Löwis | 2002-05-08 | 4 | -2/+35 |
| | | | | | Avoid checks for negative indices and duplicate checks for support of the sequence protocol. | ||||
* | Patch #551011: Fix compilation problems with Cygwin. | Martin v. Löwis | 2002-05-08 | 1 | -1/+1 |
| | |||||
* | More support for bridging between Python and CoreFoundation objects. Still ↵ | Jack Jansen | 2002-05-07 | 3 | -6/+131 |
| | | | | untested. | ||||
* | Added pycfbridge.c | Jack Jansen | 2002-05-07 | 1 | -0/+0 |
| | |||||
* | Added enumobject.c | Jack Jansen | 2002-05-07 | 2 | -0/+0 |
| | |||||
* | Move 'Tips and Tricks' to be the last section | Andrew M. Kuchling | 2002-05-07 | 1 | -227/+227 |
| | |||||
* | Add section on Setup file | Andrew M. Kuchling | 2002-05-07 | 1 | -109/+137 |
| | | | | | Updates for 2.2 Remove references to Makefile.pre.in build method | ||||
* | More filling out | Andrew M. Kuchling | 2002-05-07 | 1 | -80/+170 |
| | |||||
* | Fix typos | Andrew M. Kuchling | 2002-05-07 | 1 | -13/+11 |
| | |||||
* | Fixed a mistake on my part when regenerating: removed a bogus import of ↵ | Jack Jansen | 2002-05-07 | 1 | -2/+0 |
| | | | | | | Applscript_Suite. Bugfix candidate (I'll move it over myself). | ||||
* | Write two sections, and write some partial text for some other sections | Andrew M. Kuchling | 2002-05-06 | 1 | -39/+224 |
| | |||||
* | Add a note explaining the interaction between unbuffered input and | Fred Drake | 2002-05-06 | 1 | -1/+3 |
| | | | | | xreadlines.xreadlines(). This closes SF patch #552804. | ||||
* | Prevent convert_path from crashing if the path is an empty string. Bugfix ↵ | Andrew M. Kuchling | 2002-05-06 | 1 | -2/+2 |
| | | | | candidate. | ||||
* | First steps towards a generalized converter of Python object | Jack Jansen | 2002-05-05 | 2 | -0/+217 |
| | | | | hierarchies to CoreFoundation object hierarchies and vice versa. | ||||
* | random.gauss() uses a piece of hidden state used by nothing else, | Tim Peters | 2002-05-05 | 3 | -1/+30 |
| | | | | | | | | | | | and the .seed() and .whseed() methods failed to reset it. In other words, setting the seed didn't completely determine the sequence of results produced by random.gauss(). It does now. Programs repeatedly mixing calls to a seed method with calls to gauss() may see different results now. Bugfix candidate (random.gauss() has always been broken in this way), despite that it may change results. | ||||
* | Rename posix_WCONTINUED to posix_WIFCONTINUED, call WIFCONTINUED inside, | Martin v. Löwis | 2002-05-04 | 1 | -2/+5 |
| | | | | add it to the posix_methods. | ||||
* | _PyGC_generation0 is now a pointer | Neil Schemenauer | 2002-05-04 | 1 | -4/+4 |
| | |||||
* | Move all data for a single generation into a structure. The set of | Neil Schemenauer | 2002-05-04 | 1 | -73/+97 |
| | | | | | | | | | | | | generations is now an array. This cleans up some code and makes it easy to change the number of generations. Also, implemented a gc_list_is_empty() function. This makes the logic a little clearer in places. The performance impact of these changes should be negligible. One functional change is that allocation/collection counters are always zeroed at the start of a collection. This should fix SF bug #551915. This change is too big for back-porting but the minimal patch on SF looks good for a bugfix release. | ||||
* | Patch #551093: Let cygwin default to --enable-shared. | Martin v. Löwis | 2002-05-03 | 2 | -3/+13 |
| | |||||
* | Integrated SF patch #539487 by Matthias Klose: | Fred Drake | 2002-05-03 | 5 | -59/+958 |
| | | | | | | | | This patch adds Milan Zamazal's conversion script and modifies the mkinfo script to build the info doc files from the LaTeX sources. Currently, the mac, doc and inst TeX files are not handled. Explicitly checks for GNU Emacs 21. | ||||
* | Boost the list of stop words, by merging in the little list Jeremy | Tim Peters | 2002-05-02 | 1 | -7/+9 |
| | | | | | just checked into Zope's ZCTextIndex branch. This reduces the size of the .chm file by about 100KB. | ||||
* | Update the xrange object description to reflect the removal of deprecated | Fred Drake | 2002-05-02 | 1 | -3/+3 |
| | | | | features. | ||||
* | Added notes related to the removal of deprecated features of the xrange type. | Fred Drake | 2002-05-02 | 1 | -0/+9 |
| | |||||
* | Added note about using the documentation build tools under Cygwin. | Fred Drake | 2002-05-02 | 2 | -0/+5 |
| | |||||
* | Remove the warning about the Cygwin directions not working -- the latest | Fred Drake | 2002-05-02 | 1 | -6/+3 |
| | | | | change to Doc/tools/node2label.pl (revision 1.13) makes this work. | ||||
* | Work around limitation of Cygwin Perl: To avoid a permission denial, we need | Fred Drake | 2002-05-02 | 1 | -1/+10 |
| | | | | | | to do the inplace-edit with a backup file. A quick test leads me to believe this is sufficient to allow building the documentation on Cygwin; a full test is in progress. | ||||
* | Indicate delayed initialization of slots. Suggested by tim.one. | Martin v. Löwis | 2002-05-02 | 1 | -3/+5 |
| | |||||
* | Patch #551008: DL_IMPORT PyBool_FromLong. | Martin v. Löwis | 2002-05-02 | 1 | -1/+1 |
| |