summaryrefslogtreecommitdiff
path: root/Objects/intobject.c
Commit message (Expand)AuthorAgeFilesLines
* Kill all uses and definitions of tp_print under Objects/. (Others will follow.)Guido van Rossum2007-08-071-1226/+0
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-14/+13
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-24/+2
* Change int_oct() and int_hex() to return unicode objects.Walter Dörwald2007-06-051-9/+5
* Add a format specifier %R to PyUnicode_FromFormat(), which embedsWalter Dörwald2007-05-191-3/+1
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-3/+3
* Add what looks like a necessary call to PyErr_NoMemory() when PyMem_MALLOC()Guido van Rossum2007-05-151-1/+1
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-141-3/+2
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-4/+0
* Merged revisions 53875-53911 via svnmerge fromThomas Wouters2007-02-251-1/+2
* Merged revisions 53304-53433,53435-53450 via svnmerge fromThomas Wouters2007-01-151-2/+3
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-0/+2
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-7/+35
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-281-3/+3
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-2/+13
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-6/+11
* Get rid of most of the rest of coerce (slot is still there for now).Neal Norwitz2006-08-211-14/+3
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-2/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-28/+39
* Get rid of remnants of integer divisionNeal Norwitz2006-03-241-25/+2
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-0/+1
* Use %ld and casts to long for refcount printing, in absense of a universallyThomas Wouters2006-03-011-2/+7
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-1/+1
* RFE #1436243: make integers in [0..256] preallocated.Georg Brandl2006-02-221-1/+1
* Avoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalizeThomas Wouters2006-02-151-1/+3
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+70
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+1
* Make subclasses of int, long, complex, float, and unicode perform typeBrett Cannon2005-04-261-1/+4
* Stop producing or using OverflowWarning. PEP 237 thought this wouldTim Peters2004-08-251-36/+4
* Check the type of values returned by __int__, __float__, __long__,Neil Schemenauer2004-07-191-6/+0
* SF bug #980419: int left-shift causes memory leakRaymond Hettinger2004-06-261-4/+26
* Reword messageAndrew M. Kuchling2004-06-051-1/+1
* Fix exception wordingAndrew M. Kuchling2004-06-051-1/+1
* SF patch #875689: >100k alloc wasted on startupRaymond Hettinger2004-02-081-1/+1
* - Removed FutureWarnings related to hex/oct literals and conversionsGuido van Rossum2003-11-291-30/+12
* Add a couple of decrefs to error paths.Michael W. Hudson2003-08-111-2/+4
* SF patch 703666: Several objects don't decref tmp on failure in subtype_newRaymond Hettinger2003-06-281-1/+3
* SF # 595026: support for masks in getargs.c.Thomas Heller2003-04-171-0/+91
* Strange control flow in PyInt_AsLong. When nb_int is called insideThomas Heller2003-02-201-3/+3
* Issue a warning when int('0...', 0) returns an int with the signGuido van Rossum2003-02-121-2/+12
* Fix SF bug #683467, 'int' ability to generate longs not inheritedNeal Norwitz2003-02-101-2/+16
* Implement appropriate __getnewargs__ for all immutable subclassable builtinGuido van Rossum2003-01-291-1/+12
* SF # 669553, fix memory (ref) leaksNeal Norwitz2003-01-191-1/+8
* Since the *_Init() are private, prefix with _, suggested by SkipNeal Norwitz2002-12-311-1/+1
* SF #561244, Micro optimizationsNeal Norwitz2002-12-301-10/+23
* Consolidate the int and long sequence repeat code. Before the change,Neil Schemenauer2002-12-301-46/+0
* Change int() so that passing a string, unicode, float or long argumentWalter Dörwald2002-11-191-4/+16
* Make int("...") return a long if an int would overflow.Walter Dörwald2002-11-061-11/+13
* Insert an overflow check when the sequence repetition count is outsideGuido van Rossum2002-09-111-3/+30
* Call me anal, but there was a particular phrase that was speading toGuido van Rossum2002-08-191-1/+1