Guido van Rossum
18ca791028
Typo.
2002-05-16 14:45:37 +00:00
Fred Drake
4e7655558c
Fix broken reference, minor clarification.
2002-05-16 13:48:14 +00:00
Fred Drake
742dc774af
Typo: build -> built
2002-05-16 13:48:01 +00:00
Raymond Hettinger
f077f790c4
Added (with GvR's endorsement) Matthew Dixon Cowles
...
for his service on the Python-Help maillist.
2002-05-16 13:42:48 +00:00
Raymond Hettinger
cadc9fbd37
Patch 547037. Corrected documentation to match
...
actual module behavior for adding newlines.
2002-05-16 04:28:44 +00:00
Martin v. Löwis
1e1fcef756
Back out #555929
2002-05-15 18:24:06 +00:00
Raymond Hettinger
b07fa39edf
Added missing index entries for mapping methods. Closes patch #548693 .
2002-05-15 15:45:25 +00:00
Michael W. Hudson
8bf46e4e7a
This is patch
...
[ 555382 ] test_array v.s. --disable-unicode
+ MvL's suggestions. Just the 32 failing tests in --disable-unicode builds
now...
2002-05-15 13:04:53 +00:00
Jason Tishler
eadb6bb3c5
Patch #555929 : Cygwin AH_BOTTOM cleanup patch
...
This patch complies with the following request found
near the top of configure.in:
# This is for stuff that absolutely must end up in pyconfig.h.
# Please use pyport.h instead, if possible.
I tested this patch under Cygwin, Win32, and Red
Hat Linux. Python built and ran successfully on
each of these platforms.
2002-05-15 11:51:33 +00:00
Jason Tishler
5cc21aee0b
Patch #553678 : Cygwin Makefile.pre.in vestige patch
...
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. :,)
2002-05-15 11:32:35 +00:00
Raymond Hettinger
d1fa3db52d
Added docstrings excerpted from Python Library Reference.
...
Closes patch 556161.
2002-05-15 02:56:03 +00:00
Chui Tey
55956c9361
Fixed bug: Split RPC message into two parts instead of three
2002-05-14 23:45:14 +00:00
Fred Drake
9aa97e835d
Minor wording changes, plus correct a typo.
2002-05-14 22:02:07 +00:00
Fred Drake
30d59baecd
Simplify code to remove an unnecessary test.
2002-05-14 15:50:11 +00:00
Guido van Rossum
570764ddce
Use spaces, not tabs for indents.
...
Raymond Hettinger, beware! This caused the Unix install to fail!
2002-05-14 14:08:12 +00:00
Raymond Hettinger
2d2b51bf22
Added tests for new degree/radian conversions.
2002-05-14 08:51:33 +00:00
Raymond Hettinger
b760efb08d
Closes patch 529408 deprecating random.stdgamma().
2002-05-14 06:40:34 +00:00
Barry Warsaw
bdc8289e06
smtp_RCPT(): Removed a somewhat embarrassing debugging line, found by
...
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.
2002-05-14 02:13:30 +00:00
Raymond Hettinger
576474c5ae
Closes SF bug 527139. Brings docs inline with random.py 1.29
...
which fixes the unnecessarily restricted method domain.
2002-05-13 23:49:13 +00:00
Raymond Hettinger
ca6cdc2c02
Closes SF bug 527139. Moved temp variables inside guard.
2002-05-13 23:40:14 +00:00
Raymond Hettinger
5359ad63ce
Correct gammavariate's method name and domain.
...
Partial solution to SF bug 527139.
2002-05-13 22:40:38 +00:00
Jack Jansen
eaba9d7b28
Added typechecking to the individual python->CF converters, so we can use them in the CF object initializers safely.
2002-05-13 21:23:10 +00:00
Jack Jansen
23be1ceb51
Added CFPreferences support. Added these as functions, not methods, which seemed counter-intuitive.
2002-05-13 21:21:49 +00:00
Guido van Rossum
4402241450
Jim Fulton reported a segfault in dir(). A heavily proxied object
...
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.
2002-05-13 18:29:46 +00:00
Guido van Rossum
df4dabd5d2
SF 554663. Add OpenBSD3. Bugfix candidate if anyone cares.
2002-05-13 14:58:02 +00:00
Guido van Rossum
6a1bd39d8e
SF 554073. Fix typo in error reporting of unrecognized character
...
following IAC. Bugfix candidate if anyone cares.
2002-05-13 14:55:33 +00:00
Michael W. Hudson
1755ad9b02
array_tounicode isn't defined in --disable-unicode builds...
...
I have a patch to make the test work too, but it's not pretty so
I'll submit it to sf.
2002-05-13 10:14:59 +00:00
Michael W. Hudson
e1c67d1dc0
Make StringIO work in --disable-unicode builds...
2002-05-13 09:42:16 +00:00
Walter Dörwald
775c11f07a
Add #ifdef PY_USING_UNICODE sections, so that
...
stringobject.c compiles again with --disable-unicode.
Fixes SF bug http://www.python.org/sf/554912
2002-05-13 09:00:41 +00:00
Raymond Hettinger
87f59eeb0a
Noted SF patch 552452 adding degree/radian conversions to mathmodule.c.
2002-05-13 04:17:32 +00:00
Raymond Hettinger
d6f2267a83
Added degrees() and radians() to mathmodule. Closes patch 552452 and
...
feature request 426539.
2002-05-13 03:56:10 +00:00
Raymond Hettinger
64108afa60
Adds tests for degrees() and radians() functions added to mathmodule.
...
Closes patch 552452 and feature request 426539.
2002-05-13 03:55:01 +00:00
Raymond Hettinger
c045b49633
Added degrees() and radians() to mathmodule. Closing patch 552452 and
...
feature request 426539.
2002-05-13 03:52:47 +00:00
Jack Jansen
7906634f28
- Better exception when a NULL CF object is encountered.
...
- Manually generate a routine with funny error semantics.
2002-05-12 22:04:14 +00:00
Barry Warsaw
69c9266f45
(py-execute-region): Do the blank line skipping inside the
...
save-excursion so that when the function is complete, point is
preserved.
2002-05-12 17:37:46 +00:00
Tim Peters
39a86c2188
SF bug 555042: zip() may trigger MemoryError.
...
NOT a bugfix candidate: this is a fix to an optimization introduced
in 2.3.
2002-05-12 07:19:38 +00:00
Raymond Hettinger
9b1df1db68
Noted change in ftplib 1.68 closing SF patch 553277.
2002-05-12 06:07:21 +00:00
Raymond Hettinger
e874fc304e
Closes SF patch 553277. Per GvR, reverting to original patch -- the way to
...
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.
2002-05-12 05:53:51 +00:00
Raymond Hettinger
94153096f5
Closes SF patch: 552468.
...
Type class unification invalidated the statement: x.__getitem__[i] is not equivalent to x[i].
2002-05-12 03:09:25 +00:00
Fred Drake
59518b04d5
Fix typo: ptread --> pthread
...
Closes SF bug #554644 .
2002-05-11 03:36:26 +00:00
Jack Jansen
6d207c09aa
- Get data from CFData objects as Python strings and vv.
...
- Started on supporting CFPropertyLists.
2002-05-10 22:51:58 +00:00
Jeremy Hylton
e037665f99
Use isinstance() in preference to comparison of type by is.
2002-05-10 21:00:35 +00:00
Andrew M. Kuchling
fad2f59313
Give the enumerate() PEP a section of its own
...
Add some credits
Fill in a link
2002-05-10 21:00:05 +00:00
Greg Ward
007c04a9d3
[from Oct 2000]
...
Start fleshing out the "Examples" section.
2002-05-10 14:45:59 +00:00
Greg Ward
954ce8b4a1
[from Oct 2000]
...
The zipfile module has been in the standard library for some time now.
2002-05-10 14:42:10 +00:00
Greg Ward
58437f20f0
[from Oct 2000]
...
Clarify explanations of header file search directories.
2002-05-10 14:40:22 +00:00
Fred Drake
1f89e2abcc
Fix markup error that suppressed space.
...
Closes SF bug #554257 . Not relevant to older releases.
2002-05-10 12:37:56 +00:00
Andrew M. Kuchling
b2cb37f298
Fix typo
2002-05-09 14:33:18 +00:00
Jack Jansen
42251323b4
Fixed string and dict conversion, and implemented booleans and numbers (int and float). I think we now have enough CFType support to start on plists and CFpreferences!
...
Transparent handling of unknown CFType objects still TBD.
2002-05-08 22:13:51 +00:00
Jack Jansen
1df628ddce
Partial fix for string handling. Null byte TBD.
2002-05-08 15:29:33 +00:00