18 lines
246 B
Python
18 lines
246 B
Python
#!/usr/bin/python
|
|
from realog import debug
|
|
import sys
|
|
import monkTools
|
|
import re
|
|
|
|
|
|
##
|
|
## @brief Transcode thales specification ...
|
|
## @param[in] value String to transform.
|
|
## @return Transformed string.
|
|
##
|
|
def transcode(value):
|
|
|
|
return value
|
|
|
|
|