Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7285d52

Browse files
committed
remove duplicated check for fractions and complex numbers (closes #26076)
Patch by Oren Milman.
1 parent 4a2e663 commit 7285d52

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

Parser/tokenizer.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1587,10 +1587,6 @@ tok_get(struct tok_state *tok, char **p_start, char **p_end)
15871587
if (c == '0') {
15881588
/* Hex, octal or binary -- maybe. */
15891589
c = tok_nextc(tok);
1590-
if (c == '.')
1591-
goto fraction;
1592-
if (c == 'j' || c == 'J')
1593-
goto imaginary;
15941590
if (c == 'x' || c == 'X') {
15951591

15961592
/* Hex */

0 commit comments

Comments
 (0)