mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552-60567 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r60553 | neal.norwitz | 2008-02-03 17:53:09 +0100 (Sun, 03 Feb 2008) | 1 line Ignore leaky warnings from test_asynchat ........ r60555 | christian.heimes | 2008-02-03 20:51:13 +0100 (Sun, 03 Feb 2008) | 1 line Another int -> pid_t case ........ r60560 | amaury.forgeotdarc | 2008-02-03 23:51:43 +0100 (Sun, 03 Feb 2008) | 6 lines Ensure that PySet_Add() operates on a newly created frozenset, like PyTuple_SetItem does. Add PyFrozenSet_Check(), which was not needed before; The list of Py*Set_Check* macros seems to be complete now. Add missing NEWS entries about all this. ........ r60563 | amaury.forgeotdarc | 2008-02-04 00:14:32 +0100 (Mon, 04 Feb 2008) | 2 lines Nasty typo in setobject.h ........ r60564 | amaury.forgeotdarc | 2008-02-04 00:15:32 +0100 (Mon, 04 Feb 2008) | 3 lines Correct test_mailbox on win32: since the test sets a custom 'colon' attribute to the main mailbox, copy it to secondary mailbox instances. ........ r60565 | amaury.forgeotdarc | 2008-02-04 00:57:24 +0100 (Mon, 04 Feb 2008) | 2 lines Let test_socketserver pass on win32, which does not have AF_UNIX sockets. ........ r60566 | jeffrey.yasskin | 2008-02-04 02:04:35 +0100 (Mon, 04 Feb 2008) | 2 lines Make int() and long() fall back to __trunc__(). See issue 2002. ........ r60567 | christian.heimes | 2008-02-04 19:00:12 +0100 (Mon, 04 Feb 2008) | 3 lines Patch #1953 I implemented the function sys._compact_freelists() and C API functions PyInt_/PyFloat_CompactFreeList() to compact the pre-allocated blocks of ints and floats. They allow the user to reduce the memory usage of a Python process that deals with lots of numbers. The patch also renames sys._cleartypecache to sys._clear_type_cache ........
This commit is contained in:
parent
fdb6bb56c1
commit
15ebc88d87
18 changed files with 256 additions and 36 deletions
|
|
@ -1242,6 +1242,40 @@ PyNumber_AsSsize_t(PyObject *item, PyObject *err)
|
|||
}
|
||||
|
||||
|
||||
PyObject *
|
||||
_PyNumber_ConvertIntegralToInt(PyObject *integral, const char* error_format)
|
||||
{
|
||||
static PyObject *int_name = NULL;
|
||||
if (int_name == NULL) {
|
||||
int_name = PyUnicode_InternFromString("__int__");
|
||||
if (int_name == NULL)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (integral && !PyLong_Check(integral)) {
|
||||
/* Don't go through tp_as_number->nb_int to avoid
|
||||
hitting the classic class fallback to __trunc__. */
|
||||
PyObject *int_func = PyObject_GetAttr(integral, int_name);
|
||||
if (int_func == NULL) {
|
||||
PyErr_Clear(); /* Raise a different error. */
|
||||
goto non_integral_error;
|
||||
}
|
||||
Py_DECREF(integral);
|
||||
integral = PyEval_CallObject(int_func, NULL);
|
||||
Py_DECREF(int_func);
|
||||
if (integral && !PyLong_Check(integral)) {
|
||||
goto non_integral_error;
|
||||
}
|
||||
}
|
||||
return integral;
|
||||
|
||||
non_integral_error:
|
||||
PyErr_Format(PyExc_TypeError, error_format, Py_TYPE(integral)->tp_name);
|
||||
Py_DECREF(integral);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
/* Add a check for embedded NULL-bytes in the argument. */
|
||||
static PyObject *
|
||||
long_from_string(const char *s, Py_ssize_t len)
|
||||
|
|
@ -1265,9 +1299,17 @@ PyObject *
|
|||
PyNumber_Long(PyObject *o)
|
||||
{
|
||||
PyNumberMethods *m;
|
||||
static PyObject *trunc_name = NULL;
|
||||
PyObject *trunc_func;
|
||||
const char *buffer;
|
||||
Py_ssize_t buffer_len;
|
||||
|
||||
if (trunc_name == NULL) {
|
||||
trunc_name = PyUnicode_InternFromString("__trunc__");
|
||||
if (trunc_name == NULL)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (o == NULL)
|
||||
return null_error();
|
||||
if (PyLong_CheckExact(o)) {
|
||||
|
|
@ -1287,6 +1329,7 @@ PyNumber_Long(PyObject *o)
|
|||
return res;
|
||||
}
|
||||
if (m && m->nb_long) { /* This should include subclasses of long */
|
||||
/* Classic classes always take this branch. */
|
||||
PyObject *res = m->nb_long(o);
|
||||
if (res && !PyLong_Check(res)) {
|
||||
PyErr_Format(PyExc_TypeError,
|
||||
|
|
@ -1299,6 +1342,27 @@ PyNumber_Long(PyObject *o)
|
|||
}
|
||||
if (PyLong_Check(o)) /* A long subclass without nb_long */
|
||||
return _PyLong_Copy((PyLongObject *)o);
|
||||
trunc_func = PyObject_GetAttr(o, trunc_name);
|
||||
if (trunc_func) {
|
||||
PyObject *truncated = PyEval_CallObject(trunc_func, NULL);
|
||||
PyObject *int_instance;
|
||||
Py_DECREF(trunc_func);
|
||||
/* __trunc__ is specified to return an Integral type,
|
||||
but long() needs to return a long. */
|
||||
int_instance = _PyNumber_ConvertIntegralToInt(
|
||||
truncated,
|
||||
"__trunc__ returned non-Integral (type %.200s)");
|
||||
return int_instance;
|
||||
}
|
||||
PyErr_Clear(); /* It's not an error if o.__trunc__ doesn't exist. */
|
||||
|
||||
if (PyString_Check(o))
|
||||
/* need to do extra error checking that PyLong_FromString()
|
||||
* doesn't do. In particular long('9.5') must raise an
|
||||
* exception, not truncate the float.
|
||||
*/
|
||||
return long_from_string(PyString_AS_STRING(o),
|
||||
PyString_GET_SIZE(o));
|
||||
if (PyUnicode_Check(o))
|
||||
/* The above check is done in PyLong_FromUnicode(). */
|
||||
return PyLong_FromUnicode(PyUnicode_AS_UNICODE(o),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue