mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
13 lines
262 B
Python
Vendored
13 lines
262 B
Python
Vendored
"""
|
|
This module exists so that pathlib objects pickled under Python 3.13 can be
|
|
unpickled in 3.14+.
|
|
"""
|
|
|
|
from pathlib import *
|
|
|
|
__all__ = [
|
|
"UnsupportedOperation",
|
|
"PurePath", "PurePosixPath", "PureWindowsPath",
|
|
"Path", "PosixPath", "WindowsPath",
|
|
]
|