mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
s/endswith/startswith/
This commit is contained in:
parent
66e1a254a1
commit
722d78f18a
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ sys.path.insert(0, os.curdir)
|
||||||
|
|
||||||
source = TESTFN + ".py"
|
source = TESTFN + ".py"
|
||||||
pyo = TESTFN + ".pyo"
|
pyo = TESTFN + ".pyo"
|
||||||
if sys.platform.endswith('java'):
|
if sys.platform.startswith('java'):
|
||||||
pyc = TESTFN + "$py.class"
|
pyc = TESTFN + "$py.class"
|
||||||
else:
|
else:
|
||||||
pyc = TESTFN + ".pyc"
|
pyc = TESTFN + ".pyc"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue