Metadata-Version: 1.1
Name: pymemfd
Version: 0.1
Summary: memfd_create interface for Linux
Home-page: https://github.org/tiran/pymemfd
Author: Christian Heimes
Author-email: christian@python.org
License: Apache 2.0
Description: pymemfd -- memfd_create wrapper for Python
        ==========================================
        
        This modules provides a Python wrapper for the new memfd_create() syscall
        and the new file-sealing fcntl() operators.
        
        Low level interface
        -------------------
        
        memfd.memfd_create(name, flags) -> int
        
        memfd.MFD_ALLOW_SEALING
        
        memfd.MFD_CLOEXEC
        
        memfd.F_ADD_SEALS
        
        memfd.F_GET_SEALS
        
        memfd.F_SEAL_SEAL
        
        memfd.F_SEAL_GROW
        
        memfd.F_SEAL_SHRINK
        
        memfd.F_SEAL_WRITE
        
        
        High level interfaces
        ---------------------
        
        memfd.open(name, \*, flags=MFD_CLOEXEC, mode='wb+', buffering=0, closefd=True,
                   \*\*kwargs) -> io.FileIO
        
        memfd.F_SEAL_ALL
        
        memfd.MFD_ALLOW_SEALING_CLOEXEC
        
        More
        ----
        
        http://man7.org/linux/man-pages/man2/memfd_create.2.html
        
        https://dvdhrm.wordpress.com/tag/memfd/
        
        Changelog
        =========
        
        pymemfd 0.1
        -----------
        
        *Release date: 24-Apr-2016*
        
        - initial release
        
        
        
Keywords: memfd memfd_create
Platform: Linux
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: C
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
