Factory function for unpickling pytz tzinfo instances. Just a wrapper around tzinfo.unpickler to save a few bytes in each pickle by shortening the path.
(*args)
| 299 | |
| 300 | |
| 301 | def _p(*args): |
| 302 | """Factory function for unpickling pytz tzinfo instances. |
| 303 | |
| 304 | Just a wrapper around tzinfo.unpickler to save a few bytes in each pickle |
| 305 | by shortening the path. |
| 306 | """ |
| 307 | return unpickler(*args) |
| 308 | |
| 309 | |
| 310 | _p.__safe_for_unpickling__ = True |
nothing calls this directly
no test coverage detected