Unset the script prefix for the current thread.
()
| 136 | |
| 137 | |
| 138 | def clear_script_prefix(): |
| 139 | """ |
| 140 | Unset the script prefix for the current thread. |
| 141 | """ |
| 142 | try: |
| 143 | del _prefixes.value |
| 144 | except AttributeError: |
| 145 | pass |
| 146 | |
| 147 | |
| 148 | def set_urlconf(urlconf_name): |
no outgoing calls