If o is a single object, returns an SQL literal as a string. If o is a non-string sequence, the items of the sequence are converted and returned as a sequence. Non-standard. For internal use; do not use this in your applications.
(self, o)
| 243 | self.commit() |
| 244 | |
| 245 | def literal(self, o): |
| 246 | """ |
| 247 | |
| 248 | If o is a single object, returns an SQL literal as a string. |
| 249 | If o is a non-string sequence, the items of the sequence are |
| 250 | converted and returned as a sequence. |
| 251 | |
| 252 | Non-standard. For internal use; do not use this in your |
| 253 | applications. |
| 254 | |
| 255 | """ |
| 256 | return self.escape(o, self.encoders) |
| 257 | |
| 258 | def begin(self): |
| 259 | """Explicitly begin a connection. Non-standard. |
no outgoing calls
no test coverage detected