##// END OF EJS Templates
Created JSON-safety utilities....
Created JSON-safety utilities. These will be useful to make it easy to create objects that are safe for encoding as JSON. Full test suite with 100% coverage included.

File last commit:

r2761:7b6e19f0
r2947:5c6d229c
Show More
inputlist.py
14 lines | 346 B | text/x-python | PythonLexer
Brian Granger
Complete reorganization of InteractiveShell....
r2761 class InputList(list):
"""Class to store user input.
It's basically a list, but slices return a string instead of a list, thus
allowing things like (assuming 'In' is an instance):
exec In[4:7]
or
exec In[5:9] + In[14] + In[21:25]"""
def __getslice__(self,i,j):
return ''.join(list.__getslice__(self,i,j))