- 19 Ock, 2013 4 kayıt (commit)
-
-
Serhiy Storchaka yazdı
when result of PyInt_AsLong() or PyLong_AsLong() narrowed to int without checks. This is a backport of changesets 13e2e44db99d and 525407d89277.
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 18 Ock, 2013 5 kayıt (commit)
-
-
Jason R. Coombs yazdı
-
Ezio Melotti yazdı
-
Łukasz Langa yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
- 17 Ock, 2013 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 16 Ock, 2013 1 kayıt (commit)
-
-
Frank Wierzbicki yazdı
-
- 15 Ock, 2013 5 kayıt (commit)
-
-
Vinay Sajip yazdı
-
Serhiy Storchaka yazdı
strings with whitespaces, backslashes or unbalanced braces.
-
Serhiy Storchaka yazdı
-
Richard Oudkerk yazdı
-
Serhiy Storchaka yazdı
in any mapping, not only in an unicode string.
-
- 14 Ock, 2013 2 kayıt (commit)
-
-
Richard Oudkerk yazdı
-
Serhiy Storchaka yazdı
-
- 13 Ock, 2013 3 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Charles-François Natali yazdı
could be the cause of a random failure).
-
Benjamin Peterson yazdı
-
- 12 Ock, 2013 5 kayıt (commit)
-
-
Serhiy Storchaka yazdı
special characters in the file path.
-
Charles-François Natali yazdı
returns ESRCH for a zombie process, which is not POSIX-compliant.
-
Ezio Melotti yazdı
-
Raymond Hettinger yazdı
-
Chris Jerdonek yazdı
-
- 11 Ock, 2013 12 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Georg Brandl yazdı
-
Ezio Melotti yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
Now pindent.py works with a "with" statement. pindent.py no longer produces improper indentation. pindent.py now works with continued lines broken after "class" or "def" keywords and with continuations at the start of line. Added regression tests for pindent.py. Modernized pindent.py.
-
Sandro Tosi yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
-
Chris Jerdonek yazdı
-
Ezio Melotti yazdı
#13899: \A, \Z, and \B now correctly match the A, Z, and B literals when used inside character classes (e.g. [A]). Patch by Matthew Barnett.
-
R David Murray yazdı
With '%', non-ascii worked because the '%' automatically got promoted to unicode. With format that doesn't happen, which led to encoding errors. This fix goes back to using %, and adds a test to make sure non-ascii string values work in iterdump.
-
R David Murray yazdı
-
- 10 Ock, 2013 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
R David Murray yazdı
Although there is not a regression in Python2, we make the same update here to keep the code bases in sync. (The fix for issue 9750 introduced a regression in Python 3 by sorting the row objects returned by fetchall. But if a row_factory such as sqlite3.Row is used, the rows may not be sortable (in Python3), which leads to an exception. The sorting is still a nice idea, so the patch moves the sort into the sql.) Fix and test by Peter Otten.
-