eric6/DebugClients/Python/coverage/env.py

changeset 7975
7d493839a8fc
parent 7702
f8b97639deb5
equal deleted inserted replaced
7974:f425b578ede7 7975:7d493839a8fc
64 64
65 # Python 3.7.0b3 changed the behavior of the sys.path[0] entry for -m. It 65 # Python 3.7.0b3 changed the behavior of the sys.path[0] entry for -m. It
66 # used to be an empty string (meaning the current directory). It changed 66 # used to be an empty string (meaning the current directory). It changed
67 # to be the actual path to the current directory, so that os.chdir wouldn't 67 # to be the actual path to the current directory, so that os.chdir wouldn't
68 # affect the outcome. 68 # affect the outcome.
69 actual_syspath0_dash_m = (PYVERSION >= (3, 7, 0, 'beta', 3)) 69 actual_syspath0_dash_m = (not PYPY) and (PYVERSION >= (3, 7, 0, 'beta', 3))
70 70
71 # When a break/continue/return statement in a try block jumps to a finally 71 # When a break/continue/return statement in a try block jumps to a finally
72 # block, does the finally block do the break/continue/return (pre-3.8), or 72 # block, does the finally block do the break/continue/return (pre-3.8), or
73 # does the finally jump back to the break/continue/return (3.8) to do the 73 # does the finally jump back to the break/continue/return (3.8) to do the
74 # work? 74 # work?

eric ide

mercurial