GitWeb
Get Gentoo!
gentoo.org sites
gentoo.org
Wiki
Bugs
Forums
Packages
Planet
Archives
Sources
Infra Status
Home
Gentoo Repository
Repositories
Projects
Developer Overlays
User Overlays
Data
Websites
index
:
fork/cpython.git
3.6
3.7
3.8
3.9
backport-e35ca41-3.11
gentoo
gentoo-2.7-vanilla
main
master
Gentoo fork of Python
Python project <python@gentoo.org>
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
Bug #1572832: fix a bug in ISO-2022 codecs which may cause segfault
Hye-Shik Chang
2006-10-08
1
-14
/
+22
*
Cause a PyObject_Malloc() failure to trigger a MemoryError, and then
Andrew M. Kuchling
2006-10-04
1
-2
/
+21
*
Forward-port of r52136,52138: a review of overflow-detecting code.
Armin Rigo
2006-10-04
1
-4
/
+8
*
Compilation problem caused by conflicting typedefs for uint32_t
Armin Rigo
2006-10-04
2
-0
/
+4
*
Bug #1556784: allow format strings longer than 127 characters in
Georg Brandl
2006-09-30
1
-2
/
+2
*
Remove extra semi-colons reported by Johnny Lee on python-dev. Backport if a...
Neal Norwitz
2006-09-23
2
-3
/
+3
*
* regression bug, count_next was coercing a Py_ssize_t to an unsigned Py_size_t
Jack Diederich
2006-09-21
1
-1
/
+1
*
Fixes a bug with bsddb.DB.stat where the flags and txn keyword
Gregory P. Smith
2006-09-19
1
-2
/
+2
*
Patch #1557515: Add RLIMIT_SBSIZE.
Martin v. Löwis
2006-09-16
1
-0
/
+4
*
Rewrite help message to remove some of the parentheticals. (There were a lot...
Andrew M. Kuchling
2006-09-14
1
-9
/
+9
*
Make --help mention that -v can be supplied multiple times
Andrew M. Kuchling
2006-09-14
1
-0
/
+1
*
The cast function did not accept c_char_p or c_wchar_p instances
Thomas Heller
2006-09-07
1
-2
/
+2
*
Anonymous structure fields that have a bit-width specified did not work,
Thomas Heller
2006-09-07
1
-2
/
+2
*
[Bug #1552726] Avoid repeatedly polling in interactive mode -- only put a tim...
Andrew M. Kuchling
2006-09-07
1
-1
/
+7
*
Bug #1551427: fix a wrong NULL pointer check in the win32 version
Georg Brandl
2006-09-06
1
-1
/
+1
*
Fix a few bugs on cjkcodecs found by Oren Tirosh:
Hye-Shik Chang
2006-09-05
3
-28
/
+39
*
Bug #1550714: fix SystemError from itertools.tee on negative value for n.
Neal Norwitz
2006-09-02
1
-2
/
+6
*
Bug #1548092: fix curses.tparm seg fault on invalid input. Needs backport to...
Neal Norwitz
2006-09-02
1
-0
/
+4
*
Add missing file for _ctypes.pyd port to win64 on AMD64.
Thomas Heller
2006-08-25
1
-0
/
+156
*
Port _ctypes.pyd to win64 on AMD64.
Thomas Heller
2006-08-25
8
-42
/
+169
*
Fix SF bug #1545837: array.array borks on deepcopy.
Thomas Wouters
2006-08-24
1
-1
/
+1
*
Expose column offset information in parse trees.
Jeremy Hylton
2006-08-22
1
-15
/
+30
*
Alexander Belopolsky pointed out that pos is a size_t
Neal Norwitz
2006-08-22
1
-1
/
+1
*
Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev
Neal Norwitz
2006-08-21
1
-1
/
+1
*
Move assert to after NULL check, otherwise we deref NULL in the assert.
Neal Norwitz
2006-08-19
1
-1
/
+1
*
Add asserts to check for 'impossible' NULL values, with comments.
Thomas Heller
2006-08-18
1
-0
/
+16
*
SF#1534630
Fredrik Lundh
2006-08-16
1
-1
/
+5
*
Remove the special casing of Py_None when converting the return value
Thomas Heller
2006-08-16
1
-1
/
+1
*
The __repr__ method of a NULL py_object does no longer raise an
Thomas Heller
2006-08-16
1
-1
/
+1
*
Add commented assert statements to check that the result of
Thomas Heller
2006-08-16
1
-20
/
+36
*
Check for NULL return value from new_CArgObject calls.
Thomas Heller
2006-08-15
1
-0
/
+6
*
Patch #1511317: don't crash on invalid hostname info
Georg Brandl
2006-08-14
1
-11
/
+14
*
Patch #1535500: fix segfault in BZ2File.writelines and make sure it
Georg Brandl
2006-08-14
1
-2
/
+17
*
Patch #1536908: Add support for AMD64 / OpenBSD.
Thomas Heller
2006-08-14
3
-3
/
+2
*
Apply the patch #1532975 plus ideas from the patch #1533481.
Thomas Heller
2006-08-14
3
-162
/
+182
*
Revert the change that tries to zero out a closure's result storage
Thomas Heller
2006-08-14
1
-15
/
+5
*
Check for NULL return value of GenericCData_new().
Thomas Heller
2006-08-14
1
-0
/
+4
*
Check for NULL return value from new_CArgObject().
Thomas Heller
2006-08-14
1
-0
/
+6
*
Remove unused, buggy test function.
Thomas Heller
2006-08-14
1
-12
/
+0
*
Get rid of compiler warning
Neal Norwitz
2006-08-13
1
-2
/
+2
*
Handle alloca failures.
Neal Norwitz
2006-08-13
2
-0
/
+15
*
Really address the issue of where to place the assert for leftblock.
Neal Norwitz
2006-08-13
1
-1
/
+1
*
Handle failure from PyModule_GetDict() (Klocwork 208).
Neal Norwitz
2006-08-13
1
-9
/
+15
*
Handle failures from lookup.
Neal Norwitz
2006-08-13
1
-0
/
+4
*
It's very unlikely, though possible that source is not a string. Verify
Neal Norwitz
2006-08-13
1
-0
/
+3
*
Handle malloc and fopen failures more gracefully.
Neal Norwitz
2006-08-13
1
-2
/
+8
*
Check return result of PyModule_GetDict().
Neal Norwitz
2006-08-13
1
-22
/
+24
*
Patch #1538606, Patch to fix __index__() clipping.
Neal Norwitz
2006-08-12
3
-40
/
+14
*
Verify verdat which is returned from malloc is not NULL.
Neal Norwitz
2006-08-12
1
-4
/
+13
*
Don't deref v if it's NULL.
Neal Norwitz
2006-08-12
1
-2
/
+4
[next]