- 12 Ara, 2001 11 kayıt (commit)
-
-
Jack Jansen yazdı
-
Just van Rossum yazdı
Jack: I hope I didn't break anything for you!
-
Just van Rossum yazdı
-
Guido van Rossum yazdı
Untabified.
-
Michael W. Hudson yazdı
[ #429329 ] actual-parameters *arg, **kws not doc'd
-
Michael W. Hudson yazdı
at present.
-
Fred Drake yazdı
for "online" (as opposed to typeset) formats.
-
Fred Drake yazdı
Converted to use "".startswith() to avoid slicing (& temp string creation).
-
Fred Drake yazdı
-
Fred Drake yazdı
docstring. This closes SF bug #485794. Additional (very) small details were added.
-
Fred Drake yazdı
on the return values from isleap(). Also checks firstweekday() and setfirstweekday().
-
- 11 Ara, 2001 21 kayıt (commit)
-
-
Guido van Rossum yazdı
The cause seems to be that when a file URL doesn't exist, urllib.urlopen() raises OSError instead of IOError. Simply add this to the except clause. Not elegant, but effective. :-)
-
Fred Drake yazdı
-
Just van Rossum yazdı
a little.
-
Tim Peters yazdı
that still fails under -Qnew, and is so tied to details of current behavior that fixing it before new division becomes the default is impractical.
-
Fred Drake yazdı
-
Fred Drake yazdı
Minor, but generates slightly smaller HTML & makes it easier to see what's happening when debugging the HTML.
-
Marc-André Lemburg yazdı
> > When using 'distutils' (shipped with Python 2.1) I've found that my > Python scripts installed with a first line of: > > #!/usr/bin/python2.1None > > This is caused by distutils trying to patch the first line of the python > script to use the current interpreter.
-
Tim Peters yazdı
delivered bizarre results. Check float_divmod for a Py_NotImplemented return and pass it along (instead of treating Py_NotImplemented as a 2-tuple). CONVERT_TO_DOUBLE: Added comments; this macro is obscure.
-
Tim Peters yazdı
division functions, and rename to float_floor_div.
-
Fred Drake yazdı
-
Tim Peters yazdı
-
Fred Drake yazdı
an object's deallocator, including an example of how to do this.
-
Tim Peters yazdı
-
Tim Peters yazdı
PyDict_UpdateFromSeq2(): removed it. PyDict_MergeFromSeq2(): made it public and documented it. PyDict_Merge() docs: updated to reveal <wink> that the second argument can be any mapping object.
-
Fred Drake yazdı
will be replaced shortly. See the comments for more details.
-
Martin v. Löwis yazdı
-
Fred Drake yazdı
line was not indented at all, so the example is no longer indented at all. All of the errors being shown remain. Typo: characteru --> character
-
Jack Jansen yazdı
-
Just van Rossum yazdı
-
Fred Drake yazdı
searched for a dependency for runtime linking. This closes SF bug #445902.
-
Guido van Rossum yazdı
(SF patch #491418, #491420, #491421.)
-
- 10 Ara, 2001 8 kayıt (commit)
-
-
Fred Drake yazdı
callback.
-
Fred Drake yazdı
references, we do not allow any outstanding exceptions "leak" into the callback's execution state. This closes SF bug #478534.
-
Tim Peters yazdı
from a prompt without searching the source code (there was an SF bug report about this, already closed ... "479568 xxsubtype builtin").
-
Finn Bock yazdı
- the repr of unicode. Jython only add the u'' if the string contains char values > 255. - A unicode arg to unicode() is perfectly valid in jython. - A test buffer() test. No buffer() on Jython This closes patch "[ #490920 ] Jython and test_unicode".
-
Fred Drake yazdı
-
Guido van Rossum yazdı
bug as the C code. :-(
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
no get function was defined, the property's doc string was inaccessible. This was because the test for prop_get was made *before* the test for a NULL/None object argument. Also changed the property class defined in Python in a comment to test for NULL to decide between get and delete; this makes it less Python but then, assigning None to a property doesn't delete it!
-