summaryrefslogtreecommitdiff
path: root/Lib/fpformat.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-01-20 23:34:12 +0000
committerSkip Montanaro <skip@pobox.com>2001-01-20 23:34:12 +0000
commitcd351243c6160c04203dad8547035beebd1cf4c3 (patch)
tree2137b0ba4c5a6a91585f823eff89c0b35d349769 /Lib/fpformat.py
parenta3575fb4885813d6b07500ecd0ae765310d18935 (diff)
downloadcpython-cd351243c6160c04203dad8547035beebd1cf4c3.tar.gz
more __all__ updates
Diffstat (limited to 'Lib/fpformat.py')
-rw-r--r--Lib/fpformat.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/fpformat.py b/Lib/fpformat.py
index df2092f91c..7319e2ae30 100644
--- a/Lib/fpformat.py
+++ b/Lib/fpformat.py
@@ -13,6 +13,8 @@ digits_behind: number of digits behind the decimal point
import re
+__all__ = ["fix","sci","NotANumber"]
+
# Compiled regular expression to "decode" a number
decoder = re.compile(r'^([-+]?)0*(\d*)((?:\.\d*)?)(([eE][-+]?\d+)?)$')
# \0 the whole thing