- 24 Mar, 2017 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
In a future versions of Python this can be an error.
-
- 20 Şub, 2017 1 kayıt (commit)
-
-
Mark Dickinson yazdı
* Fix incorrect handling of signed zeros for complex-related classes. * Add Misc/NEWS entry.
-
- 24 Eyl, 2016 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 09 Eyl, 2016 1 kayıt (commit)
-
-
Brett Cannon yazdı
Thanks to Georg Brandl for the patch.
-
- 10 Eki, 2014 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 07 Kas, 2013 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-
- 29 Eyl, 2013 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 14 Kas, 2012 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 04 Ara, 2010 4 kayıt (commit)
-
-
Eric Smith yazdı
-
Eric Smith yazdı
-
Eric Smith yazdı
Removed static function complex_format, moved it into complex_repr. Modified tests to check both str and repr, which are the same for complex.
-
Alexander Belopolsky yazdı
types. Added a new API function, PyUnicode_TransformDecimalToASCII(), which transforms non-ASCII decimal digits in a Unicode string to their ASCII equivalents.
-
- 25 Kas, 2010 1 kayıt (commit)
-
-
Eric Smith yazdı
Issue #7094: Add alternate ('#') flag to __format__ methods for float, complex and Decimal. Allows greater control over when decimal points appear. Added to make transitioning from %-formatting easier. '#g' still has a problem with Decimal which I'll fix soon.
-
- 21 Kas, 2010 2 kayıt (commit)
-
-
Ezio Melotti yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
-
Ezio Melotti yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
-
- 20 Kas, 2010 1 kayıt (commit)
-
-
Ezio Melotti yazdı
-
- 02 Agu, 2010 1 kayıt (commit)
-
-
Ezio Melotti yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79539 | florent.xicluna | 2010-04-01 01:01:03 +0300 (Thu, 01 Apr 2010) | 2 lines Replace catch_warnings with check_warnings when it makes sense. Use assertRaises context manager to simplify some tests. ........
-
- 01 Agu, 2010 3 kayıt (commit)
-
-
Mark Dickinson yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83400 | mark.dickinson | 2010-08-01 11:41:49 +0100 (Sun, 01 Aug 2010) | 7 lines Issue #9416: Fix some issues with complex formatting where the output with no type specifier failed to match the str output: - format(complex(-0.0, 2.0), '-') omitted the real part from the output, - format(complex(0.0, 2.0), '-') included a sign and parentheses. ........
-
Mark Dickinson yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83400 | mark.dickinson | 2010-08-01 11:41:49 +0100 (Sun, 01 Aug 2010) | 7 lines Issue #9416: Fix some issues with complex formatting where the output with no type specifier failed to match the str output: - format(complex(-0.0, 2.0), '-') omitted the real part from the output, - format(complex(0.0, 2.0), '-') included a sign and parentheses. ........
-
Mark Dickinson yazdı
output with no type specifier failed to match the str output: - format(complex(-0.0, 2.0), '-') omitted the real part from the output, - format(complex(0.0, 2.0), '-') included a sign and parentheses.
-
- 30 Haz, 2010 2 kayıt (commit)
-
-
Mark Dickinson yazdı
-
Mark Dickinson yazdı
-
- 30 May, 2010 2 kayıt (commit)
-
-
Mark Dickinson yazdı
and a complex instance. Based on a patch by Meador Inge.
-
Mark Dickinson yazdı
type. Coercion for arithmetic operations was already removed in r78280, but that commit didn't remove coercion for rich comparisons.
-
- 21 May, 2010 1 kayıt (commit)
-
-
Mark Dickinson yazdı
objects. (1) The comparison could incorrectly return True in some cases (2**53+1 == complex(2**53) == 2**53), breaking transivity of equality. (2) The comparison raised an OverflowError for large integers, leading to unpredictable exceptions when combining integers and complex objects in sets or dicts. Patch by Meador Inge.
-
- 02 Nis, 2010 1 kayıt (commit)
-
-
Florent Xicluna yazdı
Merged revisions 79534,79537,79539,79558,79606 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r79534 | florent.xicluna | 2010-03-31 23:21:54 +0200 (mer, 31 mar 2010) | 2 lines Fix test for xml.etree when using a non-ascii path. And use check_warnings instead of catch_warnings. ........ r79537 | florent.xicluna | 2010-03-31 23:40:32 +0200 (mer, 31 mar 2010) | 2 lines Fix typo ........ r79539 | florent.xicluna | 2010-04-01 00:01:03 +0200 (jeu, 01 avr 2010) | 2 lines Replace catch_warnings with check_warnings when it makes sense. Use assertRaises context manager to simplify some tests. ........ r79558 | florent.xicluna | 2010-04-01 20:17:09 +0200 (jeu, 01 avr 2010) | 2 lines #7092: Fix some -3 warnings, and fix Lib/platform.py when the path contains a double-quote. ........ r79606 | florent.xicluna | 2010-04-02 19:26:42 +0200 (ven, 02 avr 2010) | 2 lines Backport some robotparser test and skip the test if the external resource is not available. ........
-
- 31 Mar, 2010 1 kayıt (commit)
-
-
Florent Xicluna yazdı
Replace catch_warnings with check_warnings when it makes sense. Use assertRaises context manager to simplify some tests.
-
- 13 Mar, 2010 1 kayıt (commit)
-
-
Mark Dickinson yazdı
-
- 22 Şub, 2010 3 kayıt (commit)
-
-
Eric Smith yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r78333 | eric.smith | 2010-02-22 13:54:44 -0500 (Mon, 22 Feb 2010) | 9 lines Merged revisions 78329 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r78329 | eric.smith | 2010-02-22 13:33:47 -0500 (Mon, 22 Feb 2010) | 1 line Issue #7988: Fix default alignment to be right aligned for complex.__format__. Now it matches other numeric types. ........ ................
-
Eric Smith yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78329 | eric.smith | 2010-02-22 13:33:47 -0500 (Mon, 22 Feb 2010) | 1 line Issue #7988: Fix default alignment to be right aligned for complex.__format__. Now it matches other numeric types. ........
-
Eric Smith yazdı
Issue #7988: Fix default alignment to be right aligned for complex.__format__. Now it matches other numeric types.
-
- 21 Şub, 2010 1 kayıt (commit)
-
-
Mark Dickinson yazdı
complex.__coerce__. Thanks Meador Inge for the patch.
-
- 20 Şub, 2010 2 kayıt (commit)
-
-
Ezio Melotti yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78249 | ezio.melotti | 2010-02-20 11:40:07 +0200 (Sat, 20 Feb 2010) | 1 line Remove e assertIs definitions and use correct assert* methods. ........
-
Ezio Melotti yazdı
-
- 29 Kas, 2009 1 kayıt (commit)
-
-
Eric Smith yazdı
Issue #3382: Make '%F' and float.__format__('F') convert results to upper case. Much of the patch came from Mark Dickinson.
-
- 26 Eki, 2009 2 kayıt (commit)
-
-
Mark Dickinson yazdı
complexobject.c. Also remove length restriction on unicode inputs to the complex constructor.
-
Mark Dickinson yazdı
-
- 13 Agu, 2009 1 kayıt (commit)
-
-
Georg Brandl yazdı
svn+ssh://svn.python.org/python/branches/py3k ........ r73715 | benjamin.peterson | 2009-07-01 01:06:06 +0200 (Mi, 01 Jul 2009) | 1 line convert old fail* assertions to assert* ........
-
- 30 Haz, 2009 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-