(string, urlencoding_mode=None, unicode_output=False)
| 173 | |
| 174 | ## Low level methods |
| 175 | def urlencode_string(string, urlencoding_mode=None, unicode_output=False): |
| 176 | if urlencoding_mode is None: |
| 177 | urlencoding_mode = S3.Config.Config().urlencoding_mode |
| 178 | return base_urlencode_string(string, urlencoding_mode, unicode_output) |
| 179 | __all__.append("urlencode_string") |
| 180 | |
| 181 |
nothing calls this directly
no test coverage detected
searching dependent graphs…