Changes between Initial Version and Version 1 of Ticket #12735


Ignore:
Timestamp:
Jan 30, 2010, 7:42:37 AM (14 years ago)
Author:
Ramiro Morales
Comment:

(reformatted description)

no 0.11 version of ipython has been released yet, should we wait for a stable release before thinking about adding compatibility code to Django?

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12735

    • Property Component Core frameworkdjango-admin.py
  • Ticket #12735 – Description

    initial v1  
     1{{{
    12[15:33] (tunix@penguix raptiye)$ ./manage.py shell
    23Traceback (most recent call last):
     
    1617    shell = IPython.Shell.IPShell(argv=[])
    1718AttributeError: 'module' object has no attribute 'Shell'
    18 
     19}}}
    1920
    2021It seems that Shell module is deprecated:
    2122
     23{{{
    2224In [1]: from IPython import Shell
    2325/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/IPython/Shell.py:31: DeprecationWarning:
     
    3133
    3234  warn(msg, category=DeprecationWarning, stacklevel=1)
     35}}}
     36
Back to Top