index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
modsupport.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
This reverts r63675 based on the discussion in this thread:
Gregory P. Smith
2008-06-09
1
-5/+5
*
Renamed PyString to PyBytes
Christian Heimes
2008-05-26
1
-5/+5
*
#1782: don't leak in error case in PyModule_AddXxxConstant. Patch by Hrvoje N...
Georg Brandl
2008-01-19
1
-2/+14
*
Forward-port of r52136,52138: a review of overflow-detecting code.
Armin Rigo
2006-10-04
1
-1/+1
*
C++ compiler cleanup: migrate to modsupport.h
Skip Montanaro
2006-04-18
1
-3/+0
*
Make Py_BuildValue, PyObject_CallFunction and
Martin v. Löwis
2006-04-14
1
-22/+57
*
Replace INT_MAX with PY_SSIZE_T_MAX.
Martin v. Löwis
2006-04-13
1
-1/+1
*
Make mktuple consistent with mklist to get rid of Coverity warnings. Also us...
Neal Norwitz
2006-03-16
1
-10/+10
*
Try to cleanup the error handling a bit so there aren't false positives
Neal Norwitz
2006-03-06
1
-8/+12
*
Fix more memory leaks. Will backport to 2.4.
Martin v. Löwis
2006-03-01
1
-1/+5
*
Use Py_ssize_t to count the
Martin v. Löwis
2006-02-16
1
-1/+1
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-1/+6
*
do_mkvalue(), 'I' and 'k' cases: squash legitimate
Tim Peters
2005-12-24
1
-2/+2
*
Add const to several API functions that take char *.
Jeremy Hylton
2005-12-10
1
-18/+18
*
bug #1281408: make Py_BuildValue work with unsigned longs and long longs
Georg Brandl
2005-11-24
1
-3/+20
*
Fix a few more memory leaks
Neal Norwitz
2005-11-20
1
-0/+1
*
This is Pete Shinners' patch from his bug report
Michael W. Hudson
2004-07-14
1
-10/+30
*
Getting rid of support for the ancient Apple MPW compiler.
Jack Jansen
2003-11-19
1
-4/+0
*
Patch #828384: Don't discard nested exception in AddObject.
Martin v. Löwis
2003-10-24
1
-2/+3
*
Better error message
Jeremy Hylton
2003-06-21
1
-1/+7
*
dded missing k and K format specifiers to Py_BuildValue and friends.
Jack Jansen
2003-04-17
1
-0/+6
*
Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.
Martin v. Löwis
2003-03-29
1
-1/+1
*
Provide __module__ attributes for functions defined in C and Python.
Jeremy Hylton
2003-01-31
1
-2/+14
*
Style consistency, so "grep ^function ..." works as expected.
Fred Drake
2003-01-30
1
-2/+4
*
Fixed potential crash: v can be NULL here, so use Py_XDECREF rather than Py_D...
Just van Rossum
2002-12-15
1
-1/+1
*
Py_InitModule4(): Accept NULL for the 'methods' argument. This makes
Fred Drake
2002-08-14
1
-14/+16
*
Patch #554716: Use __va_copy where available.
Martin v. Löwis
2002-07-28
1
-0/+4
*
PyModule_AddObject(): Added missing exceptions.
Fred Drake
2002-06-17
1
-7/+14
*
Introduce two new flag bits that can be set in a PyMethodDef method
Fred Drake
2002-03-28
1
-0/+7
*
Patch #445762: Support --disable-unicode
Martin v. Löwis
2001-08-17
1
-0/+4
*
Plug a memory leak in Py_InitModule4(): when PyDict_SetItemString() failed,
Fred Drake
2001-08-04
1
-2/+6
*
This patch turns the Python API mismatch notice into a standard
Marc-André Lemburg
2001-07-31
1
-5/+11
*
Py_BuildValue(): Add "D" conversion to create a Python complex value from
Fred Drake
2001-03-12
1
-0/+6
*
Rationalize use of limits.h, moving the inclusion to Python.h.
Fred Drake
2000-09-26
1
-3/+0
*
Andrew Kuchling <akuchlin@mems-exchange.org>:
Fred Drake
2000-09-23
1
-0/+27
*
Cast UCHAR_MAX to int before doing the comparison for overflow of the
Jack Jansen
2000-09-15
1
-0/+1
*
REMOVED all CWI, CNRI and BeOpen copyright markings.
Guido van Rossum
2000-09-01
1
-9/+0
*
Add a test that Py_IsInitialized() in Py_InitModule4(). See
Guido van Rossum
2000-08-04
1
-0/+2
*
Mass ANSIfication of function definitions. Doesn't cover all 'extern'
Thomas Wouters
2000-07-22
1
-68/+8
*
Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.
Tim Peters
2000-07-09
1
-6/+6
*
Added support for H (unsigned short) specifier in PyArg_ParseTuple and
Jack Jansen
2000-07-06
1
-0/+3
*
Include limits.h if we have it.
Jack Jansen
2000-07-03
1
-0/+3
*
Change copyright notice - 2nd try.
Guido van Rossum
2000-06-30
1
-6/+0
*
Change copyright notice.
Guido van Rossum
2000-06-30
1
-22/+7
*
Trent Mick's Win64 changes: size_t vs. int or long; also some overflow
Guido van Rossum
2000-06-28
1
-2/+9
*
Brian Hooper <brian_takashi@hotmail.com>:
Fred Drake
2000-04-28
1
-1/+31
*
Change rare occurrences of #if HAVE_LONG_LONG to #ifdef.
Guido van Rossum
1999-01-25
1
-1/+1
*
Oops, forgot a pair of {}'s. (Greg Couch)
Guido van Rossum
1998-12-23
1
-1/+2
*
Add 'N' format character to Py_BuildValue -- like 'O' but doesn't INCREF.
Guido van Rossum
1998-12-23
1
-1/+3
*
Patch by Mark Hammond to support 64-bit ints on MS platforms.
Guido van Rossum
1998-08-25
1
-1/+1
[next]