VFS Extended attributes for Python: Release 0.4.0


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News VFS Extended attributes for Python: Release 0.4.0
# 1  
Old 07-01-2008
VFS Extended attributes for Python: Release 0.4.0

pyxattr is an Python extension module wrapper for libattr. You can use this module to query, list, add and remove extended attributes from files and directories.
Image Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Minix 3.2.1 MFS/VFS/PFS?

Hi. I'm starting to use minix and the version I'm using is 3.2.1. I didn't understand why in this version there are MFS/VFS/PFS file systems and in the other versions there is only FS. I'm trying to modify the file system but I don't know where should I modify. Does anyone know why are there... (0 Replies)
Discussion started by: ReonarudoB
0 Replies

2. Gentoo

Help & lead me to the end. VFS: readonly/fs couldn't mount.

In a case of root=/dev/ram0 real_root=/dev/sda2 No filesystem could mount root, tried: ext3 ext2... Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(1,0) http://imageplay.net/img/tya22288136/IMG0204A.jpg (real_root - real panic) The case of omitting real_root and... (1 Reply)
Discussion started by: Xcislav
1 Replies

3. Red Hat

VFS (virtual file system)

hlow all, i want to know how we do insert big file in VFS and how we do to call that file again can anyone explain about that thx before (0 Replies)
Discussion started by: zvtral
0 Replies

4. Red Hat

RedHat hang after VFS Mounted Root

I can install RedHat ASE3 on a virtual machine (Ram set to 600Mb) without any problems. However if I start a Virtual machine with greater than 600Mb then either try and boot an existing image or install a new one it will stop at the line: VFS: Mounter Root (ext2 fielsystem) Ocastionally I... (1 Reply)
Discussion started by: Ralf
1 Replies

5. UNIX for Advanced & Expert Users

Mounting Dir's to VFS table

Does anyone know a way to mount new directories into the VFS table without having to type them in? Thanks in advance! - BC (1 Reply)
Discussion started by: wcostigan
1 Replies
Login or Register to Ask a Question
CYTHON(1)							   User Commands							 CYTHON(1)

NAME
Cython - compile Cython code (.pyx) into C to build a Python extension SYNOPSIS
cython [options] sourcefile.{pyx,py} ... DESCRIPTION
Cython (http://cython.org) is a compiler for code written in the Cython language. Cython is based on Pyrex by Greg Ewing. OPTIONS
-V, --version Display version number of cython compiler -l, --create-listing Write error messages to a listing file -I, --include-dir <directory> Search for include files in named directory (multiple include directories are allowed). -o, --output-file <filename> Specify name of generated C file -t, --timestamps Only compile newer source files -f, --force Compile all source files (overrides implied -t) -q, --quiet Don't print module names in recursive mode -v, --verbose Be verbose, print file names on multiple compilation -p, --embed-positions If specified, the positions in Cython files of each function definition is embedded in its docstring. --cleanup <level> Release interned objects on python exit, for memory debugging. Level indicates aggressiveness, default 0 releases nothing. -w, --working <directory> Sets the working directory for Cython (the directory modules are searched from) --gdb Output debug information for cygdb -D, --no-docstrings Strip docstrings from the compiled module. -a, --annotate Produce a colorized HTML version of the source. --line-directives Produce #line directives pointing to the .pyx source --cplus Output a C++ rather than C file. --embed[=<method_name>] Generate a main() function that embeds the Python interpreter. -2 Compile based on Python-2 syntax and code semantics. -3 Compile based on Python-3 syntax and code semantics. --fast-fail Abort the compilation on the first error --warning-error, -Werror Make all warnings into errors --warning-extra, -Wextra Enable extra warnings -X, --directive <name>=<value>[,<name=value,...] Overrides a compiler directive Cython version 0.15.1 January 2012 CYTHON(1)