summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Patch #553678: Cygwin Makefile.pre.in vestige patchJason Tishler2002-05-151-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 Hettinger2002-05-154-1/+121
| | | | Closes patch 556161.
* Fixed bug: Split RPC message into two parts instead of threeChui Tey2002-05-141-1/+1
|
* Minor wording changes, plus correct a typo.Fred Drake2002-05-141-7/+7
|
* Simplify code to remove an unnecessary test.Fred Drake2002-05-141-2/+1
|
* Use spaces, not tabs for indents.Guido van Rossum2002-05-141-4/+4
| | | | Raymond Hettinger, beware! This caused the Unix install to fail!
* Added tests for new degree/radian conversions.Raymond Hettinger2002-05-141-0/+2
|
* Closes patch 529408 deprecating random.stdgamma().Raymond Hettinger2002-05-141-11/+35
|
* smtp_RCPT(): Removed a somewhat embarrassing debugging line, found byBarry Warsaw2002-05-141-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.29Raymond Hettinger2002-05-131-1/+1
| | | | which fixes the unnecessarily restricted method domain.
* Closes SF bug 527139. Moved temp variables inside guard.Raymond Hettinger2002-05-131-7/+6
|
* Correct gammavariate's method name and domain.Raymond Hettinger2002-05-131-2/+2
| | | | Partial solution to SF bug 527139.
* Added typechecking to the individual python->CF converters, so we can use ↵Jack Jansen2002-05-131-2/+16
| | | | them in the CF object initializers safely.
* Added CFPreferences support. Added these as functions, not methods, which ↵Jack Jansen2002-05-133-3/+372
| | | | seemed counter-intuitive.
* Jim Fulton reported a segfault in dir(). A heavily proxied objectGuido van Rossum2002-05-132-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 Rossum2002-05-131-1/+1
|
* SF 554073. Fix typo in error reporting of unrecognized characterGuido van Rossum2002-05-131-1/+1
| | | | following IAC. Bugfix candidate if anyone cares.
* array_tounicode isn't defined in --disable-unicode builds...Michael W. Hudson2002-05-131-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. Hudson2002-05-132-2/+4
|
* Add #ifdef PY_USING_UNICODE sections, so thatWalter Dörwald2002-05-131-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 Hettinger2002-05-131-0/+2
|
* Added degrees() and radians() to mathmodule. Closes patch 552452 andRaymond Hettinger2002-05-131-0/+27
| | | | feature request 426539.
* Adds tests for degrees() and radians() functions added to mathmodule.Raymond Hettinger2002-05-131-0/+10
| | | | Closes patch 552452 and feature request 426539.
* Added degrees() and radians() to mathmodule. Closing patch 552452 andRaymond Hettinger2002-05-131-0/+8
| | | | feature request 426539.
* - Better exception when a NULL CF object is encountered.Jack Jansen2002-05-123-16/+168
| | | | - Manually generate a routine with funny error semantics.
* (py-execute-region): Do the blank line skipping inside theBarry Warsaw2002-05-121-8/+7
| | | | | save-excursion so that when the function is complete, point is preserved.
* SF bug 555042: zip() may trigger MemoryError.Tim Peters2002-05-122-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 Hettinger2002-05-121-0/+7
|
* Closes SF patch 553277. Per GvR, reverting to original patch -- the way toRaymond Hettinger2002-05-121-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 Hettinger2002-05-121-4/+2
| | | | Type class unification invalidated the statement: x.__getitem__[i] is not equivalent to x[i].
* Fix typo: ptread --> pthreadFred Drake2002-05-111-1/+1
| | | | Closes SF bug #554644.
* - Get data from CFData objects as Python strings and vv.Jack Jansen2002-05-102-1/+34
| | | | - Started on supporting CFPropertyLists.
* Use isinstance() in preference to comparison of type by is.Jeremy Hylton2002-05-101-2/+2
|
* Give the enumerate() PEP a section of its ownAndrew M. Kuchling2002-05-101-36/+50
| | | | | Add some credits Fill in a link
* [from Oct 2000]Greg Ward2002-05-101-9/+202
| | | | Start fleshing out the "Examples" section.
* [from Oct 2000]Greg Ward2002-05-101-2/+4
| | | | The zipfile module has been in the standard library for some time now.
* [from Oct 2000]Greg Ward2002-05-101-14/+18
| | | | Clarify explanations of header file search directories.
* Fix markup error that suppressed space.Fred Drake2002-05-101-1/+1
| | | | Closes SF bug #554257. Not relevant to older releases.
* Fix typoAndrew M. Kuchling2002-05-091-1/+1
|
* Fixed string and dict conversion, and implemented booleans and numbers (int ↵Jack Jansen2002-05-081-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 Jansen2002-05-081-2/+4
|
* Remove news about PyMalloc_*. Do we need to say anything aboutNeil Schemenauer2002-05-081-6/+1
| | | | pymalloc?
* Updates and rewritingAndrew M. Kuchling2002-05-081-110/+112
|
* Patch #553230: Create LIBDIR if necessary. Bugfix candidate.Martin v. Löwis2002-05-081-1/+1
|
* Patch #553277: Accept callbacks that are callable, not callbacks that are true.Martin v. Löwis2002-05-082-1/+2
|
* Patch #553403: Fix typo.Martin v. Löwis2002-05-082-3/+3
|
* Patch #551410: Implement tp_getiter.Martin v. Löwis2002-05-081-1/+51
|
* 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.