2009-03-01から1ヶ月間の記事一覧

Paste:URLMap で VirtualHost

Paste の URLMap を利用すると VirtualHost と同じようなことができる。 [DEFAULT] debug = false email_to = foo@example.com smtp_server = localhost error_email_from = foo@example.com [server:main] use = egg:Paste#http host = 0.0.0.0 port = 5000…

mimetypes.guess_type problem

http://lucumr.pocoo.org/2009/3/1/the-1000-speedup-or-the-stdlib-sucks http://bugs.python.org/issue5401 実行時間を計測してみました。試行1: >>> import timeit >>> setup = "from mimetypes import guess_type" >>> stmt = "guess_type('test.jpg')" …

PEP372 Adding an ordered dictionary to collections

PEP372 Adding an ordered dictionary to collections2008年6月 Armin Ronacher 氏による投稿。早く Python の標準パッケージに取り込んでほしい。Pyxis ではサードパーティの _ordereddict を利用している。posted by id:junya_hayashi