- 12 Eyl, 2012 2 kayıt (commit)
-
-
Christian Heimes yazdı
Fix out of bounds read in long_new() for empty bytes with an explicit base. int(b'', somebase) calls PyLong_FromString() with char* of length 1 but the function accesses the first argument at offset 1. CID 715359
-
Barry Warsaw yazdı
when action='append', type='str' and default=[].
-
- 11 Eyl, 2012 4 kayıt (commit)
-
-
R David Murray yazdı
-
Christian Heimes yazdı
Fix null pointer dereferencing in structmember.c PyMember_SetOne() for T_CHAR. _PyUnicode_AsStringAndSize() can return NULL without touching the len argument. Also remove unnecessary PyUnicode_Check(), _PyUnicode_AsStringAndSize() performance the test again. CID 486815
-
Senthil Kumaran yazdı
-
Jesus Cea yazdı
-
- 10 Eyl, 2012 13 kayıt (commit)
-
-
Jesus Cea yazdı
-
Jesus Cea yazdı
-
Jesus Cea yazdı
-
Christian Heimes yazdı
Fixed memory leak in error branch of object_repr which may leak a reference to mod when type_name returns NULL. CID 715371
-
Christian Heimes yazdı
Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s going out of scope leaks the storage it points to.
-
R David Murray yazdı
Also adds tests to verify the documented behavior (which is probably a bug, as indicated in the added comments). Patch by Chris Jerdonek.
-
doko@ubuntu.com yazdı
changeset: 77827:c23b442b5d5e user: Antoine Pitrou <solipsis@pitrou.net> date: Thu Jun 28 01:20:26 2012 +0200 summary: Avoid using scrdir, it's broken. changeset: 77826:f0e58e778215 user: Neil Schemenauer <nas@arctrix.com> date: Wed Jun 27 15:58:37 2012 -0600 summary: Fix bug in test_tools that prevented building is separate directory.
-
Richard Oudkerk yazdı
-
Christian Heimes yazdı
-
Christian Heimes yazdı
-
Christian Heimes yazdı
-
Christian Heimes yazdı
-
Christian Heimes yazdı
Py_TYPE() has already dereferenced self before the NULL check. Moved Py_TYPE() after the check for self == NULL
-
- 09 Eyl, 2012 6 kayıt (commit)
-
-
Jesus Cea yazdı
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
-
Alexander Belopolsky yazdı
-
Ned Deily yazdı
they are created in the install locations and with the proper timestamp. (Solution suggested by MvL)
-
- 08 Eyl, 2012 6 kayıt (commit)
-
-
R David Murray yazdı
-
Ezio Melotti yazdı
-
Ezio Melotti yazdı
#15865: add "*" in the signature to document keyword-only args in the docs. Patch by Chris Jerdonek.
-
R David Murray yazdı
Patch by Chris Jerdonek.
-
R David Murray yazdı
This fixes a regression introduced by the fix for issue #13922. Although args is not documented as being allowed to be a tuple, previously this worked and so naturally there are programs in the field that depend on it. Patch by Zbyszek Jędrzejewski-Szmek.
-
Stefan Krah yazdı
-
- 07 Eyl, 2012 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
This was a regression caused by the hash randomization patch.
-
Christian Heimes yazdı
BSD's make doesn't support some of the features.
-
- 06 Eyl, 2012 2 kayıt (commit)
-
-
Christian Heimes yazdı
-
Christian Heimes yazdı
-
- 05 Eyl, 2012 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
sporadic crashes in multi-thread programs when several long deallocator chains ran concurrently and involved subclasses of built-in container types. Because of this change, a couple extension modules compiled for 3.2.4 (those which use the trashcan mechanism, despite it being undocumented) will not be loadable by 3.2.3 and earlier. However, extension modules compiled for 3.2.3 and earlier will be loadable by 3.2.4.
-
Antoine Pitrou yazdı
and StringIO objects now raise ValueError when the object has been closed. Patch by Alessandro Moura.
-
- 03 Eyl, 2012 2 kayıt (commit)
-
-
Alexander Belopolsky yazdı
-
R David Murray yazdı
Patch by Anton Barkovsky, comment addition by me. This showed up as a bug in 3.3 because the definition for Chrome produced such an empty string. This fix is tested in 3.3+; backporting the new test suite is more trouble than it is worth.
-
- 02 Eyl, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-