94d2fc1815
* Added nxhtml, mostly for django support. * Changed some org settings.
23 lines
299 B
Python
23 lines
299 B
Python
# -*- Python -*-
|
|
|
|
|
|
"""
|
|
===============
|
|
This is a title
|
|
===============
|
|
|
|
This is some general description
|
|
"""
|
|
|
|
|
|
class SomeClass(object):
|
|
"""
|
|
This is a class description.
|
|
"""
|
|
|
|
def __init__(self, fileName):
|
|
"""The constructor."""
|
|
pass
|
|
|
|
def oneMethod():
|
|
pass
|