Changes between Initial Version and Version 1 of Ticket #12735
- Timestamp:
- Jan 30, 2010, 7:42:37 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #12735
- Property Component Core framework → django-admin.py
-
Ticket #12735 – Description
initial v1 1 {{{ 1 2 [15:33] (tunix@penguix raptiye)$ ./manage.py shell 2 3 Traceback (most recent call last): … … 16 17 shell = IPython.Shell.IPShell(argv=[]) 17 18 AttributeError: 'module' object has no attribute 'Shell' 18 19 }}} 19 20 20 21 It seems that Shell module is deprecated: 21 22 23 {{{ 22 24 In [1]: from IPython import Shell 23 25 /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/IPython/Shell.py:31: DeprecationWarning: … … 31 33 32 34 warn(msg, category=DeprecationWarning, stacklevel=1) 35 }}} 36