This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file was automatically generated by SWIG (https://www.swig.org). | |
# Version 4.4.0 | |
# | |
# Do not make changes to this file unless you know what you are doing - modify | |
# the SWIG interface file instead. | |
from sys import version_info as _swig_python_version_info | |
# Import the low-level C/C++ module | |
if getattr(globals().get("__spec__"), "parent", None) or __package__ or "." in __name__: | |
from . import _argcargvtest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import h5py | |
import numpy as np | |
from versioned_hdf5 import VersionedHDF5File | |
def gen_string(rs, j, k, dt): | |
return ( | |
rs.randint(ord("A"), ord("Z"), dt.itemsize * j * k, dtype="uint8") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pickle import PickleBuffer | |
def unravel_pickle(obj: object, seen: list[int] | None = None) -> Any: | |
if isinstance(obj, (int, float, complex, bytes, str, bool, type(None))): | |
return obj | |
if isinstance(obj, (bytearray, memoryview, PickleBuffer)): | |
return str(type(obj)), bytes(obj) | |
if callable(obj): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder