* IPython/Extensions/ipipe.py: Rename XAttr to AttributeDetail and make it iterable (iterating over the attribute itself). Add two new magic strings for __xattrs__(): If the string starts with "-", the attribute will not be displayed in ibrowse's detail view (but it can still be iterated over). This makes it possible to add attributes that are large lists or generator methods to the detail view. Replace magic attribute names and _attrname() and _getattr() with "descriptors": For each type of magic attribute name there's a subclass of Descriptor: None -> SelfDescriptor(); "foo" -> AttributeDescriptor("foo"); "foo()" -> MethodDescriptor("foo"); "-foo" -> IterAttributeDescriptor("foo"); "-foo()" -> IterMethodDescriptor("foo"); foo() -> FunctionDescriptor(foo). Magic strings returned from __xattrs__() are still supported. |
|
More...
|
almost 19 years ago
|
Fix getglobals() if we're not running under IPython. |
|
More...
|
almost 19 years ago
|
Jorgen Cederlof's patch for storing multiline history entries as single items in history |
|
More...
|
almost 19 years ago
|
Make cursor visible over non existing attributes. |
|
More...
|
almost 19 years ago
|
Use os.popen4() so that the error output of the running command doesn't mess up the screen. |
|
More...
|
almost 19 years ago
|
Make isort usable without a key argument. This sorts the items themselves. |
|
More...
|
almost 19 years ago
|
Compile expression strings into code objects. This should speed up ifilter and friends somewhat. |
|
More...
|
almost 19 years ago
|
%cpaste now strips > from the beginning of lines, after a patch by Stefan van der Walt. |
|
More...
|
almost 19 years ago
|
qt4agg matplotlib backend support for pylab mode, patch contributed by Darren Dale. |
|
More...
|
almost 19 years ago
|
Give the ibrowse cursor row a blue background. |
|
More...
|
almost 19 years ago
|
changelog |
|
More...
|
almost 19 years ago
|
Apply David Huard's patch for displaying the correct docstring for 'property' attributes. |
|
More...
|
almost 19 years ago
|
Remove "x" as a backspace key in _CommandInput.. |
|
More...
|
almost 19 years ago
|
Use a loop to collect the keys that are displayed as a help message in the footer. |
|
More...
|
almost 19 years ago
|
Add a __delitem__() method to Keymap. |
|
More...
|
almost 19 years ago
|
Put the documentation of the keyboard commands into the methods implementing them. |
|
More...
|
almost 19 years ago
|
small cleanup to ipython.el, submitted by Kov Chai |
|
More...
|
almost 19 years ago
|
Replace the plain dictionaries used for keymaps with a custom class that simplifies handling. |
|
More...
|
almost 19 years ago
|
Exclude the .svn directories from the distributed tarballs. |
|
More...
|
almost 19 years ago
|
If running under Python 2.5, ibrowse now properly handles terminal resizing. |
|
More...
|
almost 19 years ago
|
Add three new commands to the input mode for "find" and friends: "delend" (CTRL-K) deletes to the end of line. "incsearchup" searches upwards in the command history for an input that starts with the text before the cursor. "incsearchdown" does the same downwards. Removed a bogus mapping of the x key to "delete". |
|
More...
|
almost 19 years ago
|
Fix typos and remove trailing whitespace. |
|
More...
|
almost 19 years ago
|
Display keycodes in the range 0x01-0x1F as CTRL-xx. |
|
More...
|
almost 19 years ago
|
Add two new commands to ibrowse: hideattr (mapped to "h") hides the attribute under the cursor. "unhiderattrs" (mapped to "H") reveals all hidden attributes again. Remapped the help command to "?". |
|
More...
|
almost 19 years ago
|
generate_output_prompt hook |
|
More...
|
almost 19 years ago
|
generate_prompt hook version string = 0.7.3.svn |
|
More...
|
almost 19 years ago
|
Change _BrowserLevel.moveto() so that the call to fetch() always tries to fetch enough data for at least one full screen. This makes it possible to simply call moveto(0,0,True) in the constructor. Fix typos and removed the obsolete goto attribute. |
|
More...
|
almost 19 years ago
|
applied Krisha Mohan Gundu's ipy_profile_sh.py patch for allowing $variable interpolation within multiline statements |
|
More...
|
almost 19 years ago
|
Display the length of the input history and the position of the cursor in the input history for the find, findbackwards and goto command. |
|
More...
|
almost 19 years ago
|
Add a class _CommandInput that implements the basic functionality of browser commands that require input. Reimplement the goto, find and findbackwards commands as subclasses of _CommandInput. Add an input history and keymaps to those commands. Add "\r" as a keyboard shortcut for the enterdefault and execute commands. |
|
More...
|
almost 19 years ago
|