- 05 Nis, 2005 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
* resp[:1] in '123' # after Py2.2, this allowed blank responses to pass. * replace <> with != * provide a usage message for empty command line calls Backport candidate.
-
- 04 Nis, 2005 5 kayıt (commit)
-
-
Walter Dörwald yazdı
-
Walter Dörwald yazdı
the last character read is "\r" (and size is None, i.e. we're allowed to call read() multiple times), so that we can return the correct line ending (this additional character might be a "\n"). If the stream is temporarily exhausted, we might return the wrong line ending (if the last character read is "\r" and the next one (after the byte stream provides more data) is "\n", but at least the atcr member ensure that we get the correct number of lines (i.e. this "\n" will not be treated as another line ending.)
-
Hye-Shik Chang yazdı
documentation. (Patch #1173245, Contributed by Jeremy Yallop)
-
Hye-Shik Chang yazdı
a default value of recursion limit from build systems. 1000 levels are still too high for some 64bit systems.
-
Hye-Shik Chang yazdı
so there's no need to pad after off_t members. And a small typo fix.
-
- 31 Mar, 2005 4 kayıt (commit)
-
-
Vinay Sajip yazdı
-
Vinay Sajip yazdı
-
Walter Dörwald yazdı
properly encoded and include the encoding in the Content-Type header.
-
Michael W. Hudson yazdı
-
- 30 Mar, 2005 6 kayıt (commit)
-
-
Michael W. Hudson yazdı
commit a yelp about a noted flaw the error messages for METH_KEYWORDS functions under some circumstances.
-
Michael W. Hudson yazdı
[ 1165306 ] Property access with decorator makes interpreter crash Don't allow the creation of unbound methods with NULL im_class, because attempting to call such crashes. Backport candidate.
-
Michael W. Hudson yazdı
-
Michael W. Hudson yazdı
[ 1166660 ] The readline module can cause python to segfault It seems to me that the code I'm rewriting here attempted to call any user-supplied hook functions using the thread state of the thread that called the hook-setting function, as opposed to that of the thread that is currently executing. This doesn't work, in general. Fix this by using the PyGILState API (It wouldn't be that hard to define a dummy version of said API when #ifndef WITH_THREAD, would it?). Also, check the conversion to integer of the return value of a hook function for errors (this problem was mentioned in the ipython bug report linked to in the above bug).
-
Michael W. Hudson yazdı
-
Michael W. Hudson yazdı
this module any more.
-
- 29 Mar, 2005 4 kayıt (commit)
-
-
Fred Drake yazdı
-
Anthony Baxter yazdı
-
Bob Ippolito yazdı
-
Anthony Baxter yazdı
fixes the crash seen in bug #1165761
-
- 28 Mar, 2005 8 kayıt (commit)
-
-
Tim Peters yazdı
Patch by Ilya Sandler. Bugfix candidate.
-
Bob Ippolito yazdı
POSIX is enabled. This prevents the toolbox glue, all of Carbon, and various other non-POSIX features from compiling. The POSIX symbols are still used by default, so turning off the #define doesn't hurt. Additionally, linker flags have changed for Darwin 8, and are different for Darwin 8/gcc4 (default) and Darwin 8/gcc3.3. Approved by Anthony
-
Martin v. Löwis yazdı
Will backport to 2.4.
-
Martin v. Löwis yazdı
-
Greg Ward yazdı
AFMT_S32_BE, AFMT_MPEG.
-
Greg Ward yazdı
macros: U16 is unsigned and S16 is signed. Duh. Clarify surrounding text a bit and refer to OSS docs.
-
Tim Peters yazdı
-
Tim Peters yazdı
work (SyntaxErrors at compile time). I slammed in what looked like the obvious fixes, but someone who understands this file should check my work.
-
- 27 Mar, 2005 4 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
instead of raising a TypeError. Allows other types to successfully implement __radd__() style methods. * Remove future division import from test suite. * Remove test suite's shadowing of __builtin__.dir().
-
Raymond Hettinger yazdı
-
- 24 Mar, 2005 4 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Thomas Heller yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
work in math displays (thanks to Bo Peng on the Doc-SIG)
-
- 23 Mar, 2005 3 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
so that bdist_wininst can specify 'any'.
-
Walter Dörwald yazdı
-