From 23770fca64078e74f13b3cdb1408dcab73ad093c Mon Sep 17 00:00:00 2001 From: rocky Date: Sun, 11 Sep 2016 03:39:19 -0400 Subject: [PATCH] Tidy a bit --- test/bytecode_2.7/05_const_map.pyc | Bin 0 -> 230 bytes test/bytecode_3.4/05_ifelse.pyc | Bin 184 -> 886 bytes test/bytecode_3.6/fstring.py | 5 ----- test/bytecode_3.6/fstring_single.py | 2 -- uncompyle6/parsers/parse35.py | 1 + 5 files changed, 1 insertion(+), 7 deletions(-) create mode 100644 test/bytecode_2.7/05_const_map.pyc delete mode 100644 test/bytecode_3.6/fstring.py delete mode 100644 test/bytecode_3.6/fstring_single.py diff --git a/test/bytecode_2.7/05_const_map.pyc b/test/bytecode_2.7/05_const_map.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d383fc0484b0436e77eb47a366b184e5ffb74161 GIT binary patch literal 230 zcmYLEOA5k349&FlH{dMOUA|wDGvIjNa)&jI2h-dVrjsixVL0$UtvbBYYR;9>02bSu1U7LtZ)r+R_A`> VU&H-Bb5S?A%fa5?-G%>L<(E9Fzxn2aT& zn0y42jYZs8#O2T{m>h>TSR}{f8yJsCso7)l15BPtyXK!s*MZa^-7PAk$%;T4ks6AM zd_WQ#!QO3=sv_&qqKeh{35y^p21>q2T`5r@DRj)1x@Rdo1s&!Z$S$esIWEAi>g9i_ zaok0lCn%?g)K~nMjLfcWUemm=05K%N)~#!r-P8~vw>6DV48f7%%_+c9aV}DLpP~c- z-L43)97HJshagRmA;=QA1UUkaAWu+0I4tV1YK~Ro35E-}XZT(VJH0{IuZR87u;rJU z!$#1$=mh7b@>adm_Pe3KIk*{Tc6xm?>iWBMR(Orzq#W(3tipHtoifb+-A(c+S93&G QvrO&8T9df!87aciUmRVD^#A|> delta 144 zcmeyywu7<$9S<*;=KqSY=?n}EkAWBt7=bJYATH(t5-AJ}Q9zQBAy|{?B}m3klkpZ~ z(n^LRW*`Sl{EE^qE=tx9TNj1|iNiAk7(Vu*h$(RLb3IhN=StRQK diff --git a/test/bytecode_3.6/fstring.py b/test/bytecode_3.6/fstring.py deleted file mode 100644 index 32b6fadc..00000000 --- a/test/bytecode_3.6/fstring.py +++ /dev/null @@ -1,5 +0,0 @@ -def fn(var1, var2): - return f'interpolate {var1} strings {var2} py36' - - -fn('a', 'b') \ No newline at end of file diff --git a/test/bytecode_3.6/fstring_single.py b/test/bytecode_3.6/fstring_single.py deleted file mode 100644 index 7df632f5..00000000 --- a/test/bytecode_3.6/fstring_single.py +++ /dev/null @@ -1,2 +0,0 @@ -def fn(var): - return f'interpolate {var} strings' \ No newline at end of file diff --git a/uncompyle6/parsers/parse35.py b/uncompyle6/parsers/parse35.py index 66407ca2..8eb329e4 100644 --- a/uncompyle6/parsers/parse35.py +++ b/uncompyle6/parsers/parse35.py @@ -40,6 +40,7 @@ class Python35Parser(Python3Parser): # RETURN_END_IF vs RETURN_VALUE ifelsestmtc ::= testexpr c_stmts_opt JUMP_FORWARD else_suitec + # ifstmt ::= testexpr c_stmts_opt # Python 3.3+ also has yield from. 3.5 does it # differently than 3.3, 3.4