home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 November / maximum-cd-2010-11.iso / DiscContents / calibre-0.7.13.msi / file_1948 < prev    next >
Encoding:
Text File  |  2009-04-15  |  1.2 KB  |  38 lines

  1. # -*- Mode: Shell-Script -*-  Not really, but shows comments correctly
  2. #***************************************************************************
  3. #
  4. # Configuration file for ipython -- ipythonrc format
  5. #
  6. # The format of this file is one of 'key value' lines.
  7. # Lines containing only whitespace at the beginning and then a # are ignored
  8. # as comments. But comments can NOT be put on lines with data.
  9. #***************************************************************************
  10.  
  11. # If this file is found in the user's ~/.ipython directory as
  12. # ipythonrc-tutorial, it can be loaded by calling passing the '-profile
  13. # tutorial' (or '-p tutorial') option to IPython.
  14.  
  15. # This profile loads a special input line filter to allow typing lines which
  16. # begin with '>>> ' or '... '. These two strings, if present at the start of
  17. # the input line, are stripped. This allows for direct pasting of code from
  18. # examples such as those available in the standard Python tutorial.
  19.  
  20. # First load basic user configuration
  21. include ipythonrc
  22.  
  23. # import ...
  24. # Module with alternate input syntax for pasting python input
  25. import_mod IPython.Extensions.InterpreterPasteInput
  26.  
  27. # from ... import *
  28. import_all
  29.  
  30. # from ... import ...
  31. import_some  
  32.  
  33. # code
  34. execute
  35.  
  36. # Files to execute
  37. execfile
  38.