How do I copy users from one sage Notebook to another Sage Notebook?
Once I have done this, can I just copy the "worksheets" directory over
to get access to all the old worksheets?
Ian
--~--~-~--~~~---~--~~
To post to this group, send email to sage-support@googlegr
I have just tested the following example re code in sage, and it fails
both on a Linux install and a Mac OS X install:
import re
p = re.compile('(a(b)c)d')
m = p.match('abcd')
m.group(0)
# expect: 'abcd'
m.group(1)
# expect: 'abc'
m.group(2)
# expect: 'b'
This is take from:
http://www.amk.ca/py