summaryrefslogtreecommitdiffstats
path: root/trunk/examples/pyexample.py
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/examples/pyexample.py')
-rw-r--r--trunk/examples/pyexample.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/trunk/examples/pyexample.py b/trunk/examples/pyexample.py
deleted file mode 100644
index 666c25b..0000000
--- a/trunk/examples/pyexample.py
+++ /dev/null
@@ -1,30 +0,0 @@
-## @package pyexample
-# Documentation for this module.
-#
-# More details.
-
-## Documentation for a function.
-#
-# More details.
-def func():
- pass
-
-## Documentation for a class.
-#
-# More details.
-class PyClass:
-
- ## The constructor.
- def __init__(self):
- self._memVar = 0;
-
- ## Documentation for a method.
- # @param self The object pointer.
- def PyMethod(self):
- pass
-
- ## A class variable.
- classVar = 0;
-
- ## @var _memVar
- # a member variable