Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

gh-72902: improve Fraction(str) speed (don't use regexp's)#133994

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
skirpichev wants to merge9 commits intopython:main
base:main
Choose a base branch
Loading
fromskirpichev:speedup-Fraction-fromstr/72902
Open
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 51 additions & 38 deletionsLib/fractions.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -53,20 +53,6 @@ def _hash_algorithm(numerator, denominator):
result = hash_ if numerator >= 0 else -hash_
return -2 if result == -1 else result

_RATIONAL_FORMAT = re.compile(r"""
\A\s* # optional whitespace at the start,
(?P<sign>[-+]?) # an optional sign, then
(?=\d|\.\d) # lookahead for digit or .digit
(?P<num>\d*|\d+(_\d+)*) # numerator (possibly empty)
(?: # followed by
(?:\s*/\s*(?P<denom>\d+(_\d+)*))? # an optional denominator
| # or
(?:\.(?P<decimal>\d*|\d+(_\d+)*))? # an optional fractional part
(?:E(?P<exp>[-+]?\d+(_\d+)*))? # and optional exponent
)
\s*\z # and optional whitespace to finish
""", re.VERBOSE | re.IGNORECASE)


# Helpers for formatting

Expand DownExpand Up@@ -252,31 +238,58 @@ def __new__(cls, numerator=0, denominator=None):

elif isinstance(numerator, str):
# Handle construction from strings.
m = _RATIONAL_FORMAT.match(numerator)
if m is None:
raise ValueError('Invalid literal for Fraction: %r' %
numerator)
numerator = int(m.group('num') or '0')
denom = m.group('denom')
if denom:
denominator = int(denom)
else:
denominator = 1
decimal = m.group('decimal')
if decimal:
decimal = decimal.replace('_', '')
scale = 10**len(decimal)
numerator = numerator * scale + int(decimal)
denominator *= scale
exp = m.group('exp')
if exp:
exp = int(exp)
if exp >= 0:
numerator *= 10**exp
fraction_literal = numerator
num, is_fraction_format, denom = fraction_literal.partition('/')
try:
num = num.strip()
denom = denom.strip()
if num and denom and denom[0].isdigit():
denominator = int(denom)
numerator = int(num)
elif num and not is_fraction_format:
denominator = 1
num, is_exp_format, exp = num.replace('E', 'e').partition('e')
if is_exp_format and not exp:
raise ValueError
num, _, decimal = num.partition('.')
if num:
if num[0] in ('+', '-'):
sign = num[0] == '-'
num = num[1:]
else:
sign = 0
if num and not (num[-1].isdigit() and num[0].isdigit()):
raise ValueError
else:
denominator *= 10**-exp
if m.group('sign') == '-':
numerator = -numerator
sign = 0
if decimal:
if not decimal[0].isdigit() or not decimal[-1].isdigit():
raise ValueError
numerator = int(num or '0')
decimal_len = len(decimal.replace('_', ''))
decimal = int(decimal)
scale = 10**decimal_len
numerator = numerator*scale + decimal
denominator *= scale
else:
numerator = int(num)
if sign:
numerator = -numerator
if exp:
if not (exp[0] in ('+', '-') or exp[0].isdigit()):
raise ValueError
exp = int(exp)
if exp >= 0:
numerator *= 10**exp
else:
denominator *= 10**-exp
else:
raise ValueError
except ValueError as exc:
if exc.args and re.match('^Exceeds', exc.args[0]):
raise
raise ValueError('Invalid literal for Fraction: %r' %
fraction_literal)

else:
raise TypeError("argument should be a string or a Rational "
Expand Down
2 changes: 2 additions & 0 deletionsLib/test/test_fractions.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -434,6 +434,7 @@ def check_invalid(s):
# Imitate float's parsing.
check_invalid("+ 3/2")
check_invalid("- 3/2")
check_invalid("+ 343.33")
# Avoid treating '.' as a regex special character.
check_invalid("3a2")
# Don't accept combinations of decimals and rationals.
Expand All@@ -445,6 +446,7 @@ def check_invalid(s):
# No space around e.
check_invalid("3.2 e1")
check_invalid("3.2e 1")
check_invalid("232e\t2")
# Fractional part don't need a sign.
check_invalid("3.+2")
check_invalid("3.-2")
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
Improve speed (x1.3-1.5) of the :class:`~fractions.Fraction` constructor for
string inputs.
Loading

[8]ページ先頭

©2009-2025 Movatter.jp