Sign in
android
/
platform
/
external
/
python
/
pylint
/
a70a1990d6881d3f131d040192aba438e508fb81
/
.
/
tests
/
functional
/
e
/
exec_used.py
blob: 5f849480e8b3ed26d6c2adc10729ca31c13cef1b [
file
] [
log
] [
blame
]
# pylint: disable=missing-docstring
exec
(
'a = __revision__'
)
# [exec-used]
exec
(
'a = 1'
,
globals
={})
# [exec-used]
exec
(
'a = 1'
,
globals
=
globals
())
# [exec-used]
def
func
():
exec
(
'b = 1'
)
# [exec-used]