Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #553678: Cygwin Makefile.pre.in vestige patch | Jason Tishler | 2002-05-15 | 1 | -1/+0 |
| | | | | | | | | | | This patch removes a vestige part of the Cygwin make rules that didn't quite make it over during the flattening of the Makefiles. In its current form, it creates a def file but incorrectly calls it libpython$(VERSION).dll.a which immediately gets overwritten by the next command. Obviously, this is useless. It appears, it was useless in the old nested Makefile structure too. :,) | ||||
* | Added docstrings excerpted from Python Library Reference. | Raymond Hettinger | 2002-05-15 | 4 | -1/+121 |
| | | | | Closes patch 556161. | ||||
* | Fixed bug: Split RPC message into two parts instead of three | Chui Tey | 2002-05-14 | 1 | -1/+1 |
| | |||||
* | Minor wording changes, plus correct a typo. | Fred Drake | 2002-05-14 | 1 | -7/+7 |
| | |||||
* | Simplify code to remove an unnecessary test. | Fred Drake | 2002-05-14 | 1 | -2/+1 |
| | |||||
* | Use spaces, not tabs for indents. | Guido van Rossum | 2002-05-14 | 1 | -4/+4 |
| | | | | Raymond Hettinger, beware! This caused the Unix install to fail! | ||||
* | Added tests for new degree/radian conversions. | Raymond Hettinger | 2002-05-14 | 1 | -0/+2 |
| | |||||
* | Closes patch 529408 deprecating random.stdgamma(). | Raymond Hettinger | 2002-05-14 | 1 | -11/+35 |
| | |||||
* | smtp_RCPT(): Removed a somewhat embarrassing debugging line, found by | Barry Warsaw | 2002-05-14 | 1 | -3/+0 |
| | | | | | | Scot Stevenson. Could be a bug fix candidate, but probably doesn't matter much unless a certain blue-nosed cat suddenly becomes corporeal and starts emailing some stmp.py (sic) fronted mailer. | ||||
* | Closes SF bug 527139. Brings docs inline with random.py 1.29 | Raymond Hettinger | 2002-05-13 | 1 | -1/+1 |
| | | | | which fixes the unnecessarily restricted method domain. | ||||
* | Closes SF bug 527139. Moved temp variables inside guard. | Raymond Hettinger | 2002-05-13 | 1 | -7/+6 |
| | |||||
* | Correct gammavariate's method name and domain. | Raymond Hettinger | 2002-05-13 | 1 | -2/+2 |
| | | | | Partial solution to SF bug 527139. | ||||
* | Added typechecking to the individual python->CF converters, so we can use ↵ | Jack Jansen | 2002-05-13 | 1 | -2/+16 |
| | | | | them in the CF object initializers safely. | ||||
* | Added CFPreferences support. Added these as functions, not methods, which ↵ | Jack Jansen | 2002-05-13 | 3 | -3/+372 |
| | | | | seemed counter-intuitive. | ||||
* | Jim Fulton reported a segfault in dir(). A heavily proxied object | Guido van Rossum | 2002-05-13 | 2 | -7/+35 |
| | | | | | | | | returned a proxy for __class__ whose __bases__ was also a proxy. The merge_class_dict() helper for dir() assumed incorrectly that __bases__ would always be a tuple and used the in-line tuple API on the proxy. I will backport this to 2.2 as well. | ||||
* | SF 554663. Add OpenBSD3. Bugfix candidate if anyone cares. | Guido van Rossum | 2002-05-13 | 1 | -1/+1 |
| | |||||
* | SF 554073. Fix typo in error reporting of unrecognized character | Guido van Rossum | 2002-05-13 | 1 | -1/+1 |
| | | | | following IAC. Bugfix candidate if anyone cares. | ||||
* | array_tounicode isn't defined in --disable-unicode builds... | Michael W. Hudson | 2002-05-13 | 1 | -0/+4 |
| | | | | | I have a patch to make the test work too, but it's not pretty so I'll submit it to sf. | ||||
* | Make StringIO work in --disable-unicode builds... | Michael W. Hudson | 2002-05-13 | 2 | -2/+4 |
| | |||||
* | Add #ifdef PY_USING_UNICODE sections, so that | Walter Dörwald | 2002-05-13 | 1 | -0/+6 |
| | | | | | | stringobject.c compiles again with --disable-unicode. Fixes SF bug http://www.python.org/sf/554912 | ||||
* | Noted SF patch 552452 adding degree/radian conversions to mathmodule.c. | Raymond Hettinger | 2002-05-13 | 1 | -0/+2 |
| | |||||
* | Added degrees() and radians() to mathmodule. Closes patch 552452 and | Raymond Hettinger | 2002-05-13 | 1 | -0/+27 |
| | | | | feature request 426539. | ||||
* | Adds tests for degrees() and radians() functions added to mathmodule. | Raymond Hettinger | 2002-05-13 | 1 | -0/+10 |
| | | | | Closes patch 552452 and feature request 426539. | ||||
* | Added degrees() and radians() to mathmodule. Closing patch 552452 and | Raymond Hettinger | 2002-05-13 | 1 | -0/+8 |
| | | | | feature request 426539. | ||||
* | - Better exception when a NULL CF object is encountered. | Jack Jansen | 2002-05-12 | 3 | -16/+168 |
| | | | | - Manually generate a routine with funny error semantics. | ||||
* | (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. |