From: Georg Brandl Date: Thu, 11 May 2006 19:57:09 +0000 (+0000) Subject: Typo fix. X-Git-Tag: v2.5b1~670 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1fb9f528bd69efa135bacda917ec7bb166068d5d;p=thirdparty%2FPython%2Fcpython.git Typo fix. --- diff --git a/Lib/decimal.py b/Lib/decimal.py index 2e0afffd0770..396c413cff60 100644 --- a/Lib/decimal.py +++ b/Lib/decimal.py @@ -731,7 +731,7 @@ class Decimal(object): """x.__hash__() <==> hash(x)""" # Decimal integers must hash the same as the ints # Non-integer decimals are normalized and hashed as strings - # Normalization assures that hast(100E-1) == hash(10) + # Normalization assures that hash(100E-1) == hash(10) if self._is_special: if self._isnan(): raise TypeError('Cannot hash a NaN value.')