Shorthand for adding a character....
(thiselement, char)
| 116 | return outlist, inline |
| 117 | |
| 118 | def __add(thiselement, char): |
| 119 | """Shorthand for adding a character....""" |
| 120 | if thiselement == None: |
| 121 | return char |
| 122 | return thiselement + char |
| 123 | |
| 124 | def unquote(inline, fullquote = 1, retain = 0, **keywargs): |
| 125 | """Given a line - if it's correctly quoted - it reurns the 'unquoted' value. |