Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
vivainio
- Fri, 17 Aug 2007 16:18:05
Show More
IPython/Extensions/pspersistence.py
0
+2
-1
@@
-20,7
+20,8
b' def restore_aliases(self):'
20
20
staliases = ip . db . get ( 'stored_aliases' , {})
21
21
for k , v in staliases . items ():
22
22
#print "restore alias",k,v # dbg
23
self . alias_table [ k ] = v
23
# self.alias_table[k] = v
24
ip . defalias ( k , v )
24
25
25
26
26
27
def refresh_variables ( ip ):
IPython/Magic.py
0
+6
-2
@@
-1,7
+1,7
b''
1
1
# -*- coding: utf-8 -*-
2
2
"""Magic functions for InteractiveShell.
3
3
4
$Id: Magic.py 2607 2007-08-13 13:25:24Z fperez $"""
4
$Id: Magic.py 263 7 2007-08-17 16:18:05Z vivainio $"""
5
5
6
6
#*****************************************************************************
7
7
# Copyright (C) 2001 Janko Hauser <jhauser@zscout.de> and
@@
-2289,7
+2289,11
b' Defaulting color scheme to \'NoColor\'"""'
2289
2289
res = []
2290
2290
showlast = []
2291
2291
for alias in aliases :
2292
tgt = atab[alias][1]
2292
try :
2293
tgt = atab [ alias ][ 1 ]
2294
except TypeError :
2295
# unsubscriptable? probably a callable
2296
tgt = atab [ alias ]
2293
2297
# 'interesting' aliases
2294
2298
if ( alias in stored or
2295
2299
alias . lower () != os . path . splitext ( tgt )[ 0 ] . lower () or
IPython/ipapi.py
0
+5
-6
@@
-362,13
+362,12
b' class IPApi:'
362
362
setattr ( IPython . shadowns , name , cmd )
363
363
return
364
364
365
366
nargs = cmd . count ( ' %s ' )
367
if nargs > 0 and cmd . find ( '%l' ) >= 0 :
368
raise Exception ( 'The %s and %l specifiers are mutually exclusive '
369
'in alias definitions.' )
365
if isinstance ( cmd , basestring ):
366
nargs = cmd . count ( ' %s ' )
367
if nargs > 0 and cmd . find ( '%l' ) >= 0 :
368
raise Exception ( 'The %s and %l specifiers are mutually exclusive '
369
'in alias definitions.' )
370
370
371
else : # all looks OK
372
371
self . IP . alias_table [ name ] = ( nargs , cmd )
373
372
374
373
def defmacro ( self , * args ):
IPython/iplib.py
0
+5
-2
@@
-6,7
+6,7
b' Requires Python 2.3 or newer.'
6
6
7
7
This file contains all the classes and helper functions specific to IPython.
8
8
9
$Id: iplib.py 2631 2007-08-15 07:07:36Z fperez $
9
$Id: iplib.py 2637 2007-08-17 16:18:05Z vivainio $
10
10
"""
11
11
12
12
#*****************************************************************************
@@
-1742,7
+1742,10
b' want to merge them back into the new files.""" % locals()'
1742
1742
def transform_alias ( self , alias , rest = '' ):
1743
1743
""" Transform alias to system command string.
1744
1744
"""
1745
nargs,cmd = self . alias_table [ alias ]
1745
trg = self . alias_table [ alias ]
1746
1747
nargs , cmd = trg
1748
# print trg #dbg
1746
1749
if ' ' in cmd and os . path . isfile ( cmd ):
1747
1750
cmd = '" %s "' % cmd
1748
1751
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages