summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Patch #552433: Special-case tuples. Avoid sub-type checking for lists.Martin v. Löwis2002-05-084-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öwis2002-05-081-1/+1
|
* More support for bridging between Python and CoreFoundation objects. Still ↵Jack Jansen2002-05-073-6/+131
| | | | untested.
* Added pycfbridge.cJack Jansen2002-05-071-0/+0
|
* Added enumobject.cJack Jansen2002-05-072-0/+0
|
* Move 'Tips and Tricks' to be the last sectionAndrew M. Kuchling2002-05-071-227/+227
|
* Add section on Setup fileAndrew M. Kuchling2002-05-071-109/+137
| | | | | Updates for 2.2 Remove references to Makefile.pre.in build method
* More filling outAndrew M. Kuchling2002-05-071-80/+170
|
* Fix typosAndrew M. Kuchling2002-05-071-13/+11
|
* Fixed a mistake on my part when regenerating: removed a bogus import of ↵Jack Jansen2002-05-071-2/+0
| | | | | | Applscript_Suite. Bugfix candidate (I'll move it over myself).
* Write two sections, and write some partial text for some other sectionsAndrew M. Kuchling2002-05-061-39/+224
|
* Add a note explaining the interaction between unbuffered input andFred Drake2002-05-061-1/+3
| | | | | xreadlines.xreadlines(). This closes SF patch #552804.
* Prevent convert_path from crashing if the path is an empty string. Bugfix ↵Andrew M. Kuchling2002-05-061-2/+2
| | | | candidate.
* First steps towards a generalized converter of Python objectJack Jansen2002-05-052-0/+217
| | | | hierarchies to CoreFoundation object hierarchies and vice versa.
* random.gauss() uses a piece of hidden state used by nothing else,Tim Peters2002-05-053-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öwis2002-05-041-2/+5
| | | | add it to the posix_methods.
* _PyGC_generation0 is now a pointerNeil Schemenauer2002-05-041-4/+4
|
* Move all data for a single generation into a structure. The set ofNeil Schemenauer2002-05-041-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öwis2002-05-032-3/+13
|
* Integrated SF patch #539487 by Matthias Klose:Fred Drake2002-05-035-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 JeremyTim Peters2002-05-021-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 deprecatedFred Drake2002-05-021-3/+3
| | | | features.
* Added notes related to the removal of deprecated features of the xrange type.Fred Drake2002-05-021-0/+9
|
* Added note about using the documentation build tools under Cygwin.Fred Drake2002-05-022-0/+5
|
* Remove the warning about the Cygwin directions not working -- the latestFred Drake2002-05-021-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 needFred Drake2002-05-021-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öwis2002-05-021-3/+5
|
* Patch #551008: DL_IMPORT PyBool_FromLong.Martin v. Löwis2002-05-021-1/+1
|
* PyObject_Realloc(): If a small block is shrinking, bite the expense ofTim Peters2002-05-021-5/+16
| | | | copying it if at least 25% of the input block can be reclaimed.
* Patch #551009: Initialize array type dynamically.Martin v. Löwis2002-05-021-3/+6
|
* Remove old deprecated features from the xrange object.Fred Drake2002-05-021-273/+40
|
* Remove all tests that rely on deprecated-in-2.2 features of xrange objects.Fred Drake2002-05-022-29/+0
| | | | | "What's New in Python 2.2" documented that these would be removed in Python 2.3.
* Many minor markup adjustments for consistency.Fred Drake2002-05-021-10/+10
|
* Remove extra period produced by previous change.Fred Drake2002-05-021-3/+3
|
* Patch 550804: Make os.environ.copy() return a copy.Martin v. Löwis2002-05-021-0/+4
|
* Added regression tests for xrange object attributes.Fred Drake2002-05-021-0/+23
| | | | See SF bug #551285.
* Fix attribute access for the xrange objects. The tp_getattr and tp_getattroFred Drake2002-05-021-31/+38
| | | | | | handlers were both set, but were not compatible. This change uses only the tp_getattro handler with a more "modern" approach. This fixes SF bug #551285.
* Correct Moshe's e-mail addressAndrew M. Kuchling2002-05-021-8/+6
| | | | | | Point to PEP 100 for MAL's Unicode proposal Fix URL for XML HOWTO Bump version number
* Note that NameError's message also changed in 2.0Andrew M. Kuchling2002-05-021-8/+10
|
* Message for NameError has changedAndrew M. Kuchling2002-05-021-1/+1
|
* clarify message when raising TypeError to indicate that float() acceptsSkip Montanaro2002-05-021-1/+1
| | | | strings or numbers
* Guard gettext and friends with HAVE_LIBINTL_H. Fixes #549907.Martin v. Löwis2002-05-021-1/+1
|
* Correct information on support for repietition & concatenation for bufferFred Drake2002-05-021-6/+8
| | | | | and xrange objects. This closes SF bug #550555.
* Buffer-object repitition and concatenation has worked all along; add a testFred Drake2002-05-021-0/+6
| | | | to make avoid regression.
* Added some notes on setting up the documentation tools on Cygwin.Fred Drake2002-05-011-0/+40
|
* Added more style for major warnings.Fred Drake2002-05-011-0/+9
|
* Pickler_clear_memo(): convert to METH_NOARGS.Fred Drake2002-05-011-5/+2
|
* Add Pickler.clear_memo() so the pickle and cPickle modules are more similar.Fred Drake2002-05-013-4/+15
|
* list_documented_items(): Basic implementation.Fred Drake2002-05-011-4/+33
| | | | | This still does not work well since ctags does not do a good job with the Python headers, appearantly due to the DL_IMPORT macro. ;-(
* Explain what os.read() returns at end of file.Fred Drake2002-05-011-1/+3
| | | | This closes SF bug #550409. Applying to release21-maint & release22-maint.