11 lines
152 B
Python
11 lines
152 B
Python
from tempfile import mktemp
|
|
import tempfile.mktemp as mt
|
|
import tempfile as tmp
|
|
|
|
foo = 'hi'
|
|
|
|
mktemp(foo)
|
|
tempfile.mktemp('foo')
|
|
mt(foo)
|
|
tmp.mktemp(foo)
|