Python: do not stake out too much territory

This commit is contained in:
Rasmus Lerchedahl Petersen
2022-09-14 10:28:11 +02:00
parent 58cfac27d2
commit f83158ff8b
2 changed files with 13 additions and 1 deletions

View File

@@ -32,6 +32,6 @@ try:
# ignored.
import mypkg
mypkg.foo(42) # $ call=mypkg.foo(..) qlclass=NormalCall
mypkg.subpkg.bar(43) # $ call=mypkg.subpkg.bar(..) qlclass=NormalCall
mypkg.subpkg.bar(43) # $ call=mypkg.subpkg.bar(..) qlclass=LibraryCall arg_0=43
except:
pass