Guest User

Untitled

a guest
Mar 2nd, 2015
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. Given the following source:
  2. from mako.template import Template
  3. import mako
  4.  
  5. from mako import template
  6.  
  7. Template("hello")
  8.  
  9. # XXX(fletcher): for some reason, bandit is missing the one below. keeping it
  10. # in for now so that if it gets fixed inadvertitently we know.
  11. mako.template.Template("hern")
  12. template.Template("hern")
  13.  
  14. The qualname lists are:
  15. ['mako', 'template', 'Template']
  16. ['mako', 'template', 'Template']
  17. ['mako', 'template', 'Template']
Advertisement
Add Comment
Please, Sign In to add comment