~ubuntu-branches/debian/sid/bandit/sid

« back to all changes in this revision

Viewing changes to examples/imports-aliases.py

  • Committer: Package Import Robot
  • Author(s): Dave Walker (Daviey)
  • Date: 2015-07-22 09:01:39 UTC
  • Revision ID: package-import@ubuntu.com-20150722090139-fl0nluy0x8m9ctx4
Tags: upstream-0.12.0
ImportĀ upstreamĀ versionĀ 0.12.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from subprocess import Popen as pop
 
2
import hashlib as h
 
3
import hashlib as hh
 
4
import hashlib as hhh
 
5
import hashlib as hhhh
 
6
from pickle import loads as lp
 
7
import pickle as p
 
8
 
 
9
pop('gcc --version', shell=True)
 
10
 
 
11
h.md5('1')
 
12
hh.md5('2')
 
13
hhh.md5('3').hexdigest()
 
14
hhhh.md5('4')
 
15
lp({'key': 'value'})