- Removed debug print

git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@259 014f5005-505e-4b48-8d0a-63407b615a7c
master
LtWorf 2010-10-08 05:52:09 +07:00
parent 3d21363e46
commit 41de96997d
2 changed files with 3 additions and 3 deletions

@ -4,7 +4,9 @@
- Internally uses set instead of lists to describe relation's content
- Tuples are internally mapped on tuples and no longer on lists
- Discards the old and not so functional tlb format
- Rename will mark the resulting relation as readonly and subsequent updates, insert or deletes will actually copy the content
- Rename will mark the resulting relation as readonly and subsequent updates, insert, updates or deletes will actually copy the content
- Added testsuite
- Fixed python expression tokenization, now uses native tokenizer
0.11
- Font is set only on windows (Rev 206)

@ -521,8 +521,6 @@ class header (object):
def rename(self,old,new):
'''Renames a field. Doesn't check if it is a duplicate.
Returns True if the field was renamed, False otherwise'''
print self.attributes,old, new
try:
id_=self.attributes.index(old)
self.attributes[id_]=new