##// END OF EJS Templates
don't re-raise the same Exception in NoDB...
don't re-raise the same Exception in NoDB on py3, exceptions keep track of their traceback, resulting in memory growth in the controller because NoDB re-raises the same instance over and over again, which was a weird thing to do, anyway. Fix is to raise a new Exception() each time

File last commit:

r7607:16e1f096
r20673:ce977c93
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>