2008-01-01から1年間の記事一覧

Python - dictproxy

immutable な辞書が必要になったので。 from ctypes import pythonapi, py_object from _ctypes import PyObj_FromPtr PyDictProxy_New = pythonapi.PyDictProxy_New PyDictProxy_New.argtypes = (py_object,) PyDictProxy_New.rettype = py_object def make…

[Python] module maze

#!/usr/bin/env python import new from random import choice, randint from string import ascii_lowercase def randword(n=8): return ''.join([choice(ascii_lowercase) for _ in xrange(randint(1,n))]) __all_modules = [] def generate_module_maze(m…