7 lines
114 B
Python
7 lines
114 B
Python
|
|
import string
|
||
|
|
|
||
|
|
|
||
|
|
class NamespaceTemplate(string.Template):
|
||
|
|
delimiter = "$"
|
||
|
|
idpattern = r"[a-z][_a-z0-9.]*"
|