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