472
I Use This!
High Activity

Commits : Listings

Analyzed about 6 hours ago. based on code collected about 6 hours ago.
Jun 06, 2024 — Jun 06, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
change "profile not found" warning heuristics (only warn if ipythonrc-PROFNAME and ipy_profile_PROFNAME not found)
Ville M. Vainio
as vivainio
More... over 19 years ago
changelog
Ville M. Vainio
as vivainio
More... over 19 years ago
changed setup to support easy_install ipython==dev
Ville M. Vainio
as vivainio
More... over 19 years ago
Fixed autoedit_syntax == 2 idiocy
Ville M. Vainio
as vivainio
More... over 19 years ago
set .ipython dir location earlier on
Ville M. Vainio
as vivainio
More... over 19 years ago
Fix html for PyPI
Fernando Perez
as fperez
More... over 19 years ago
ipalias deprecated/redundant; aliases are converted and called by _ip.system() with the pre-transformed command string.
Ville M. Vainio
as vivainio
More... over 19 years ago
Moved path to extensions - pickleshare failed because it imported path absolutely, while in IPython it was packaged inside Ipython.
Ville M. Vainio
as vivainio
More... over 19 years ago
Attempt to make ipy gettable from svn repo through easy_install by specifying the svn url in long_description.
Ville M. Vainio
as vivainio
More... over 19 years ago
aliases can be %store'd
Ville M. Vainio
as vivainio
More... over 19 years ago
Grand Persistence Overhaul, featuring PickleShare. startup and shutdown hooks added.
Ville M. Vainio
as vivainio
More... over 19 years ago
Made 'old' readline work again (GetOutpuFile was not exported with 'from readline import *', need to access via real module)
Ville M. Vainio
as vivainio
More... over 19 years ago
Fix KeyboardInterrupt trapping (Ctrl-C), which I think I recently broke.
Fernando Perez
as fperez
More... over 19 years ago
Oops, OutputFile was only in Windows readline, fixed.
Ville M. Vainio
as vivainio
More... over 19 years ago
provide single readline config place through rlineimpl
Ville M. Vainio
as vivainio
More... over 19 years ago
Try to import pyreadline on win32
Ville M. Vainio
as vivainio
More... over 19 years ago
ipsystem() -> _ip.system()
Ville M. Vainio
as vivainio
More... over 19 years ago
-Expose IPApi is _ip in user namespace.
Ville M. Vainio
as vivainio
More... over 19 years ago
Changed doc on how to enable a hook
Ville M. Vainio
as vivainio
More... over 19 years ago
GetoptErrors when invoking magics etc. with wrong args are now more helpful.
Ville M. Vainio
as vivainio
More... over 19 years ago
/f 1 2 -> f(1,2), not f(1 2). I.e. autoparen fixes
Ville M. Vainio
as vivainio
More... over 19 years ago
%quickref
Ville M. Vainio
as vivainio
More... over 19 years ago
Do not change sys.argv to ['-c'] on "-c cmd" command line option.
Ville M. Vainio
as vivainio
More... over 19 years ago
-iplib.py: added InteractiveShell.getapi(). New magics should be written doing self.getapi() instead of using the shell directly. -Magic.py: %store now allows doing %store foo > ~/myfoo.txt and %store foo >> ~/myfoo.txt to store variables to files (in clean textual form, not a restorable pickle).
Ville M. Vainio
as vivainio
More... over 19 years ago
a = !ls, a = %alias now work (captures output or gets ret val for aliases) IPApi.meta() provides session data storage for extensions. %alias without args returns a list of tuples instead of printing a list. __IP.meta is now Struct instead of dummy class "Bunch"
Ville M. Vainio
as vivainio
More... over 19 years ago
whoops, lasth commit was an accident - but it works. It made input prefilter configurable. This checkin fixed argv saving properly
Ville M. Vainio
as vivainio
More... over 19 years ago
mods
Ville M. Vainio
as vivainio
More... over 19 years ago
Provide "realistic" sys.argv for scripts run via ipython command line invocation
Ville M. Vainio
as vivainio
More... over 19 years ago
- Small fix to demos to flush stdout on each printed block.
Fernando Perez
as fperez
More... over 19 years ago
ipapi rehaul, moved api methods to class IPApi. Usage didn't change much. Launcher methods now allow specifying initial user namespace (in order to be useful for users who embed ipython).
Ville M. Vainio
as vivainio
More... over 19 years ago