Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
c667c1f74abd96a2098520effdd5afdff7f0d34b
/
.
/
python
/
helpers
/
pydev
/
pydevd_exec2.py
blob: ee4f37a6c79264df4fbae65ed920ba52d7309050 [
file
] [
log
] [
blame
]
Tor Norbye
c667c1f
2014-05-28 17:06:51 -0700
[
diff
] [
blame^
]
1
def
Exec
(
exp
,
global_vars
,
local_vars
=
None
):
2
if
local_vars
is
not
None
:
3
exec
(
exp
,
global_vars
,
local_vars
)
4
else
:
5
exec
(
exp
,
global_vars
)