1. 5cfa804 Issue #6857: Fix Decimal formatting to be consistent with existing float by Mark Dickinson · 15 years ago
  2. 968f169 #Issue 6795: Fix infinite recursion in long(Decimal('nan')); change int(Decimal('nan')) to raise ValueError instead of either returning NaN or raising InvalidContext. by Mark Dickinson · 15 years ago
  3. 491ea55 Issue #6850: Fix bug in Decimal._parse_format_specifier for formats by Mark Dickinson · 15 years ago
  4. 7a7739d Issue #6794: Fix handling of NaNs in Decimal.compare_total and by Mark Dickinson · 15 years ago
  5. 4326ad8 Issue #6595: Allow Decimal constructor to accept non-European decimal by Mark Dickinson · 15 years ago
  6. a016deb Update spec version number. by Raymond Hettinger · 15 years ago
  7. b14514a Fix bug in _insert_thousands_sep: too much zero padding could be by Mark Dickinson · 15 years ago
  8. 277859d Issue #2110: Add support for thousands separator and 'n' format specifier by Mark Dickinson · 15 years ago
  9. b065e52 Fix bug in Decimal __format__ method that swapped left and right alignment. by Mark Dickinson · 15 years ago
  10. daeceb2 Add a version tag to the decimal module. by Raymond Hettinger · 15 years ago
  11. 2c8585b Register decimals as numbers.Number by Raymond Hettinger · 15 years ago
  12. e52c314 Remove uses of cmp from the decimal module. by Mark Dickinson · 16 years ago
  13. 65808ff More Python 2.3 compatibility fixes for decimal.py. by Mark Dickinson · 16 years ago
  14. 6a96163 Fix Decimal.from_float to use valid Python 2.3 syntax, as per by Mark Dickinson · 16 years ago
  15. b7e835b Reapply r68191. by Raymond Hettinger · 16 years ago
  16. f4d8597 Issue 4796: Add from_float methods to the decimal module. by Raymond Hettinger · 16 years ago
  17. 4aa04db Issue #4812: further renaming of internal Decimal constants, for clarity. by Mark Dickinson · 16 years ago
  18. c5de096 Issue #4812: add missing underscore prefix to some internal-use-only by Mark Dickinson · 16 years ago
  19. e29d435 Issue #4084: Fix max, min, max_mag and min_mag Decimal methods to by Facundo Batista · 16 years ago
  20. 18aa388 Fix: by Neal Norwitz · 16 years ago
  21. 53663a6 Issue 2235: __hash__ is once again inherited by default, but inheritance can be blocked explicitly so that collections.Hashable remains meaningful by Nick Coghlan · 16 years ago
  22. 70c3289 Replace occurrences of '\d' with '[0-9]' in Decimal regex, to make sure by Mark Dickinson · 16 years ago
  23. 71f3b85 Make sure that Context traps and flags dictionaries have values 0 and 1 by Mark Dickinson · 16 years ago
  24. 8aca9d0 Some very minor changes to decimal.py in Python 2.6, aimed by Mark Dickinson · 16 years ago
  25. 1840c1a Backport Raymond's changes in r60508 to Python 2.6. by Mark Dickinson · 16 years ago
  26. ee340e5 Fixed some test structures. Thanks Mark Dickinson. by Facundo Batista · 16 years ago
  27. 8e85ffa Issue #2482: Make sure that the coefficient of a Decimal by Mark Dickinson · 16 years ago
  28. 3b24ccb Issue #2478: Decimal(sqrt(0)) failed when the decimal context by Mark Dickinson · 16 years ago
  29. f4da777 Fix docstring typo. by Mark Dickinson · 16 years ago
  30. 1ddf1d8 Add __format__ method to Decimal, to support PEP 3101 by Mark Dickinson · 16 years ago
  31. 6a123cb Remove duplicate 'import re' in decimal.py by Mark Dickinson · 16 years ago
  32. abe3237 Fix decimal repr which should have used single quotes like other reprs. by Raymond Hettinger · 16 years ago
  33. 116f72f Bring decimal a bit closer to the spec for Reals. by Raymond Hettinger · 16 years ago
  34. 3a94ee0 Typos in decimal comment and documentation by Mark Dickinson · 16 years ago
  35. 2fc9263 Issue 1979: Make Decimal comparisons (other than !=, ==) involving NaN by Mark Dickinson · 16 years ago
  36. 5a05364 Add support for trunc(). by Raymond Hettinger · 17 years ago
  37. c8acc88 Docstring typos by Andrew M. Kuchling · 17 years ago
  38. 59bc20b Issue 1780: Allow leading and trailing whitespace in Decimal constructor, by Mark Dickinson · 17 years ago
  39. 097a190 Have Decimal.as_tuple return a named tuple. by Raymond Hettinger · 17 years ago
  40. 52b2579 Issue #1757: The hash of a Decimal instance is no longer affected by Facundo Batista · 17 years ago
  41. 0f5e7bf Some minor cleanups. Thanks Mark Dickinson. by Facundo Batista · 17 years ago
  42. e64acfa Removed the private _rounding_decision: it was not needed, and the code by Facundo Batista · 17 years ago
  43. 58f6f2e fma speedup by avoiding to create a Context. Thanks Mark Dickinson. by Facundo Batista · 17 years ago
  44. 2ec7415 Faster _fix function, and some reordering for a more elegant by Facundo Batista · 17 years ago
  45. 62edb71 Speedup and cleaning of __str__. Thanks Mark Dickinson. by Facundo Batista · 17 years ago
  46. 0d157a0 Reordering of __new__ to minimize isinstance() calls to most by Facundo Batista · 17 years ago
  47. 72bc54f Major change in the internal structure of the Decimal by Facundo Batista · 17 years ago
  48. 9b5e231 The constructor from tuple was way too permissive: it allowed bad by Facundo Batista · 17 years ago
  49. be6c7ba Added a class to store the digits of log(10), so that they can be made by Facundo Batista · 17 years ago
  50. 1a191df Made the various is_* operations return booleans. This was discussed by Facundo Batista · 17 years ago
  51. 8c20244 Issue #1772851. Optimization of __hash__ to behave better for big big numbers. by Facundo Batista · 17 years ago
  52. cce8df2 Speed up of the various division operations (remainder, divide, by Facundo Batista · 17 years ago
  53. 6c398da The methods always return Decimal classes, even if they're by Facundo Batista · 17 years ago
  54. bd2fe83 Put the parameter watchexp back in (changed watchexp from an int by Facundo Batista · 17 years ago
  55. 353750c Merged the decimal-branch (revisions 54886 to 58140). Decimal is now by Facundo Batista · 17 years ago
  56. 8496939 When passed a bad formed literal to Decimal, now we have a by Facundo Batista · 17 years ago
  57. 0d4c06e Whitespace normalization. Ugh, we really need to do this more often. by Neal Norwitz · 17 years ago
  58. 59c5884 General clean-up. Lot of margin corrections, comments, some typos. by Facundo Batista · 17 years ago
  59. 495df47 Fix docstring bug by Raymond Hettinger · 17 years ago
  60. 681d867 Add missing word in comment by Neal Norwitz · 18 years ago
  61. ced1218 Make decimal.ContextManager a private implementation detail of decimal.localcontext() by Nick Coghlan · 18 years ago
  62. 8b6999b Fix the wrongheaded implementation of context management in the decimal module and add unit tests. (python-dev discussion is ongoing regarding what we do about Python 2.5) by Nick Coghlan · 18 years ago
  63. cfe3128 Revert r50706 (Whitespace normalization) and by Martin v. Löwis · 18 years ago
  64. 73a9ead Whitespace normalization. by Tim Peters · 18 years ago
  65. ac4ae4b Comments and docs cleanups, and some little fixes, provided by Santiágo Peresón by Facundo Batista · 18 years ago
  66. 1fb9f52 Typo fix. by Georg Brandl · 18 years ago
  67. afd5e63 Finish bringing SVN into line with latest version of PEP 343 by getting rid of all remaining references to context objects that I could find. Without a __context__() method context objects no longer exist. Also get test_with working again, and adopt a suggestion from Neal for decimal.Context.get_manager() by Nick Coghlan · 18 years ago
  68. da5b701 Get rid of __context__, per the latest changes to PEP 343 and python-dev by Guido van Rossum · 18 years ago
  69. a7e820a Move the PEP 343 documentation and implementation closer to the by Nick Coghlan · 18 years ago
  70. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 18 years ago
  71. 1a5e21e Updates to the with-statement: by Guido van Rossum · 18 years ago
  72. f33d01d bug [ 1266296 ] Mistakes in decimal.Context.subtract documentation by Georg Brandl · 19 years ago
  73. e5a0a96 Apply the _is_special guard. by Raymond Hettinger · 19 years ago
  74. eb26084 Minor namespace clean-up. by Raymond Hettinger · 19 years ago
  75. 267b868 * Fix decimal's handling of foreign types. Now returns NotImplemented by Raymond Hettinger · 19 years ago
  76. bea3f6f Bug #1163325: "special" decimals aren't hashable by Raymond Hettinger · 19 years ago
  77. 46b0802 Fix small grammatical error in a docstring. by Brett Cannon · 19 years ago
  78. dbecd93 Replace list of constants with tuples of constants. by Raymond Hettinger · 19 years ago
  79. 7e71fa5 Bug #1083645 by Raymond Hettinger · 20 years ago
  80. 605ed02 SF bug #1071588 coercing decimal to int doesn't work between -1 and 1 by Raymond Hettinger · 20 years ago
  81. 17931de SF patch #1053375. (Contributed by Facundo Batista.) by Raymond Hettinger · 20 years ago
  82. 99b5548 Very few little improvements. by Facundo Batista · 20 years ago
  83. 76e60d6 SF bug #1048728: Bug fixes and cleanup for decimal.py by Raymond Hettinger · 20 years ago
  84. abf8a56 Don't use mutable values for method defaults. by Raymond Hettinger · 20 years ago
  85. dab988d SF patch #1043218 by Raymond Hettinger · 20 years ago
  86. 4837a22 Use floor division operator. by Raymond Hettinger · 20 years ago
  87. 636a6b1 SF patch #1020845: Decimal performance enhancements by Raymond Hettinger · 20 years ago
  88. 27dbcf2 Establish policies with respect to 2.3 compatibilty and treated spec by Raymond Hettinger · 20 years ago
  89. d6c700a Revise max() and min() to comply with the 8/2/2004 update to the specification by Raymond Hettinger · 20 years ago
  90. 9fce44b * Context.copy() now makes a deepcopy. * Facilitate reloads of local thread. by Raymond Hettinger · 20 years ago
  91. 61992ef SF bug #1002530: test_decimal fails if repeated by Raymond Hettinger · 20 years ago
  92. ef66deb Use threading.local() instead of threading.currentThread(). by Raymond Hettinger · 20 years ago
  93. 99148e7 Factor out two unnecessary global variables. by Raymond Hettinger · 20 years ago
  94. b91af52 * Hide a loop induction variable that was inadvertantly being picked up by Raymond Hettinger · 20 years ago
  95. fed5296 * Rename "Signals" to "_signals" making it non-public. by Raymond Hettinger · 20 years ago
  96. bf44069 Improve Context construction and representation: by Raymond Hettinger · 20 years ago
  97. d87ac8f * Update the test suite to reflect that ConversionSyntax was no longer by Raymond Hettinger · 20 years ago
  98. 5aa478b Module and tests: by Raymond Hettinger · 20 years ago
  99. bd7f76d Tim gets his default traps. by Raymond Hettinger · 20 years ago
  100. 4e0e1b6 Whitespace normalization. by Tim Peters · 20 years ago