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
/
Objects
/
complexobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Kill all uses and definitions of tp_print under Objects/. (Others will follow.)
Guido van Rossum
2007-08-07
1
-11/+1
*
Kill div, mod and divmod on complex (already deprecated in 2.x).
Guido van Rossum
2007-08-01
1
-55/+15
*
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis
2007-07-21
1
-2/+1
*
Make identifiers str (not str8) objects throughout.
Martin v. Löwis
2007-06-10
1
-2/+2
*
Change float.__str__() and complex.__str__() to return
Walter Dörwald
2007-05-31
1
-1/+1
*
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald
2007-05-18
1
-1/+1
*
Get rid of all #ifdef Py_USING_UNICODE (it is always present now).
Guido van Rossum
2007-05-03
1
-4/+0
*
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum
2007-04-27
1
-11/+91
*
Merged the int/long unification branch, by very crude means (sorry Thomas!).
Guido van Rossum
2007-01-14
1
-4/+0
*
- patch #1600346 submitted by Tomer Filiba
Jack Diederich
2006-11-28
1
-2/+2
*
Fix comparing complex to non-complex numbers.
Guido van Rossum
2006-08-21
1
-10/+4
*
Get rid of most of the rest of coerce (slot is still there for now).
Neal Norwitz
2006-08-21
1
-46/+1
*
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters
2006-08-11
1
-7/+7
*
Get rid of most of the flags (in tp_flags) that keep track of various
Guido van Rossum
2006-07-27
1
-20/+76
*
Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn
Thomas Wouters
2006-06-08
1
-2/+2
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-6/+6
*
Get rid of remnants of integer division
Neal Norwitz
2006-03-24
1
-23/+0
*
Revert backwards-incompatible const changes.
Martin v. Löwis
2006-02-27
1
-1/+1
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-2/+2
*
Add const to several API functions that take char *.
Jeremy Hylton
2005-12-10
1
-1/+1
*
patch [ 1118729 ] Error in representation of complex numbers(again)
Georg Brandl
2005-09-16
1
-6/+3
*
Bug #1079011: Incorrect error message (somewhat)
Raymond Hettinger
2004-12-19
1
-1/+1
*
Fix repr for negative imaginary part. Fixes #1013908.
Martin v. Löwis
2004-08-22
1
-2/+6
*
Patch #774665: Make Python LC_NUMERIC agnostic.
Martin v. Löwis
2004-06-08
1
-9/+14
*
Simplify and speedup uses of Py_BuildValue():
Raymond Hettinger
2003-10-12
1
-2/+2
*
Remove 'e.g.' from error message
Raymond Hettinger
2003-08-30
1
-3/+3
*
complex_new(): This could leak when the argument was neither string nor
Tim Peters
2003-08-15
1
-0/+3
*
Fix typo in comment.
Walter Dörwald
2003-06-17
1
-1/+1
*
Fix from Greg Chapman from SF bug #695651: a complex subclass
Guido van Rossum
2003-03-02
1
-2/+3
*
Implement appropriate __getnewargs__ for all immutable subclassable builtin
Guido van Rossum
2003-01-29
1
-0/+7
*
complex() was the only numeric constructor that created a new instance
Raymond Hettinger
2002-08-29
1
-0/+9
*
Call me anal, but there was a particular phrase that was speading to
Guido van Rossum
2002-08-19
1
-1/+1
*
Patch #568124: Add doc string macros.
Martin v. Löwis
2002-06-13
1
-2/+2
*
Rearrange the #ifndef WITHOUT_COMPLEX so it can be picked up from
Guido van Rossum
2002-06-13
1
-2/+2
*
Close SF bug 563740. complex() now finds __complex__() in new style classes.
Raymond Hettinger
2002-06-06
1
-26/+23
*
Deprecate % as well. The message for deprecation of //, % and divmod
Guido van Rossum
2002-04-15
1
-1/+6
*
SF bug #543387.
Guido van Rossum
2002-04-15
1
-0/+5
*
SF bug 543840: complex(string) accepts strings with \0
Tim Peters
2002-04-14
1
-1/+1
*
PyObject_Del can now be used as a function designator.
Neil Schemenauer
2002-04-12
1
-1/+1
*
SF bug 533198: Complex power underflow raises exception.
Tim Peters
2002-03-22
1
-3/+9
*
Declare real and imag as read-only attributes.
Guido van Rossum
2002-02-08
1
-2/+2
*
Ensure that complex() only accepts a string argument as the first arg,
Fred Drake
2001-12-13
1
-1/+13
*
complex_to_buf(), complex_subtype_from_c_complex(): Conversion of
Barry Warsaw
2001-11-28
1
-8/+10
*
complex_subtype_from_string(): move the declaration of s_buffer[] out
Guido van Rossum
2001-10-25
1
-1/+3
*
Enable GC for new-style instances. This touches lots of files, since
Guido van Rossum
2001-10-05
1
-1/+2
*
Merge branch changes (coercion, rich comparisons) into trunk.
Guido van Rossum
2001-09-27
1
-4/+2
*
Do the same thing to complex that I did to str: the rich comparison
Guido van Rossum
2001-09-24
1
-7/+10
*
Add optional docstrings to member descriptors. For backwards
Guido van Rossum
2001-09-20
1
-3/+5
*
complex_coerce(): add explicit PyComplex_Check() test. Previously,
Guido van Rossum
2001-09-19
1
-0/+5
*
Again perhaps the end of [#460020] bug or feature: unicode() and subclasses.
Tim Peters
2001-09-12
1
-11/+19
[next]