Django1.1.1をIronPython2.6にインストールし、importすると下記のようなエラーが発生する。
Cannot call lazy() with both str and unicode return types.
http://bitbucket.org/jdhardy/django-ironpython/changeset/b70eeacda60c/
を参考にして、django.utils.
assert
not (cls._delegate_str and cls._delegate_unicode),
の行を
assert (str is unicode) or not (cls._delegate_str and cls._delegate_unicode),
に変更したらとりあえず回避できた。
Last 5 posts in .Net Framework
- CanExecuteのTrue,Falseを変更してもコマンド実行の可否がGUIに反映されない場合には - April 12th, 2011
- WebRequestの最大接続数を設定ファイルで変更するには - April 9th, 2011
- WebRequestの最大同時接続数を変更するには - April 5th, 2011