You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Parses a phrase for an unsigned floating-point number. Shouldn't be used for text output, because long numbers will be rounded, and, depending on the requirements, because the decimal separator is normalized."""
"""Parses a phrase for a floating-point number that may be negative, returning the number as a string."""
330
+
"""Parses a phrase for a floating-point number that may be negative, returning the number as a string with one of different possible decimal separators."""
325
331
number=m.number_float_string
326
332
returnf"-{number}"ifm[0] in ["negative", "minus"] elsenumber
"""Parses a phrase for a floating-point number that may be negative. Shouldn't be used for text output, because long numbers will be rounded, and, depending on the requirements, because the decimal separator is normalized."""
0 commit comments