472
I Use This!
High Activity

Commits : Listings

Analyzed about 2 hours ago. based on code collected about 2 hours ago.
Jun 07, 2024 — Jun 07, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
* 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.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
Fix getglobals() if we're not running under IPython.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
Jorgen Cederlof's patch for storing multiline history entries as single items in history
Ville M. Vainio
as vivainio
More... almost 19 years ago
Make cursor visible over non existing attributes.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
Use os.popen4() so that the error output of the running command doesn't mess up the screen.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
Make isort usable without a key argument. This sorts the items themselves.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
Compile expression strings into code objects. This should speed up ifilter and friends somewhat.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
%cpaste now strips > from the beginning of lines, after a patch by Stefan van der Walt.
Ville M. Vainio
as vivainio
More... almost 19 years ago
qt4agg matplotlib backend support for pylab mode, patch contributed by Darren Dale.
Ville M. Vainio
as vivainio
More... almost 19 years ago
Give the ibrowse cursor row a blue background.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
changelog
Ville M. Vainio
as vivainio
More... almost 19 years ago
Apply David Huard's patch for displaying the correct docstring for 'property' attributes.
Ville M. Vainio
as vivainio
More... almost 19 years ago
Remove "x" as a backspace key in _CommandInput..
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
Use a loop to collect the keys that are displayed as a help message in the footer.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
Add a __delitem__() method to Keymap.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
Put the documentation of the keyboard commands into the methods implementing them.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
small cleanup to ipython.el, submitted by Kov Chai
Fernando Perez
as fperez
More... almost 19 years ago
Replace the plain dictionaries used for keymaps with a custom class that simplifies handling.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
Exclude the .svn directories from the distributed tarballs.
Fernando Perez
as fperez
More... almost 19 years ago
If running under Python 2.5, ibrowse now properly handles terminal resizing.
Walter Doerwald
as walter.doerwald
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".
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
Fix typos and remove trailing whitespace.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
Display keycodes in the range 0x01-0x1F as CTRL-xx.
Walter Doerwald
as walter.doerwald
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 "?".
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
generate_output_prompt hook
Ville M. Vainio
as vivainio
More... almost 19 years ago
generate_prompt hook version string = 0.7.3.svn
Ville M. Vainio
as vivainio
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.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago
applied Krisha Mohan Gundu's ipy_profile_sh.py patch for allowing $variable interpolation within multiline statements
Ville M. Vainio
as vivainio
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.
Walter Doerwald
as walter.doerwald
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.
Walter Doerwald
as walter.doerwald
More... almost 19 years ago