##// END OF EJS Templates
Backport PR #2169: ipdb: pdef, pdoc, pinfo magics all broken...
Backport PR #2169: ipdb: pdef, pdoc, pinfo magics all broken ``` In[1]: dg.meshes.square.qmesh(2) ... IndexError: index (48) out of range (0<=index<47) in dimension 0 In [2]: debug ... ipdb> pinfo jx ... /usr/lib/python2.7/dist-packages/IPython/core/debugger.pyc in do_pinfo(self, arg) 490 namespaces = [('Locals', self.curframe.f_locals), 491 ('Globals', self.curframe.f_globals)] --> 492 self.shell.magic_pinfo("pinfo %s" % arg, namespaces=namespaces) 493 494 def checkline(self, filename, lineno): AttributeError: 'TerminalInteractiveShell' object has no attribute 'magic_pinfo' ```

File last commit:

r7607:16e1f096
r8065:07ce3259
Show More
Info.plist.example
20 lines | 702 B | text/plain | TextLexer
# Add this into the info.plist file of an application
# and the icns icon in Contents/Resources
# then move the application twice :
# http://superuser.com/questions/178316/how-to-set-an-icon-for-a-file-type-on-mac
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>ipynb</string>
</array>
<key>CFBundleTypeIconFile</key>
<string>ipynb_mac_icon</string>
<key>CFBundleTypeName</key>
<string>IPython notebook file</string>
<key>CFBundleTypeRole</key>
<string>None</string>
</dict>
<array>