Update of /cvsroot/pydev/org.python.pydev/tests/pysrc/extendable/noerr
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8061/tests/pysrc/extendable/noerr
Modified Files:
importer.py
Log Message:
Synching from mercurial:
- Pydev debugger watch working in eclipse 3.4
- Pydev debugger breakpoint properties accept new lines and tabs
- Incremental find backspace works correctly
- Interactive console Fixed problem when more attempts to connect were needed
- Launch icons: Transparent background (thanks to Radim Kubacki)
- Creating workbench test for debugger
Index: importer.py
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/tests/pysrc/extendable/noerr/importer.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** importer.py 2 Feb 2008 22:29:30 -0000 1.4
--- importer.py 13 Aug 2008 21:12:16 -0000 1.5
***************
*** 32,35 ****
--- 32,42 ----
def __init__(self, **entries):
self.__dict__.update(entries)
+
+
+ class StructSub(Struct):
+ '''@DynamicAttrs
+ '''
+ pass #Subclass of one with Dynamic attrs also must define it
+
globals_struct = Struct(answer=42, linelen = 80, font='courier')
|