MCPcopy Create free account
hub / github.com/scottrogowski/code2flow / _p

Function _p

tests/test_code/py/pytz/__init__.py:301–307  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

299
300
301def _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

Callers

nothing calls this directly

Calls 1

unpicklerFunction · 0.90

Tested by

no test coverage detected