Instant 0.9.5 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Instant 0.9.5 (Default branch)
# 1  
Old 10-20-2008
Instant 0.9.5 (Default branch)

Instant is a Python module that allows for instant inlining of C and C++ code in Python. It is a small Python module built on top of SWIG. License: BSD License (original) Changes:
Much of the code has been restructured and rewritten. Multi-level cache functionality has been improved. instant-clean and instant-showcache scripts have been added. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Red Hat

Instant client

Hi, Could you please tell me how to check instant client is installed in Linux server? OS -- Linux 5.11 Oracle -- 10.2.0.5.0 Regards, Maddy (2 Replies)
Discussion started by: Maddy123
2 Replies

2. Programming

Instant Messaging App Help

I was hoping someone could assist me on a text-based instant messaging client(using UDP) I am working on. I have the network communication basics already in place but, specifically, needed some further help on the "messaging other users" and "getting a user list" functions. The server code that... (0 Replies)
Discussion started by: AusTex
0 Replies
Login or Register to Ask a Question
PY3COMPILE(1)                                                                                                                        PY3COMPILE(1)

NAME
py3compile - byte compile Python 3 source files SYNOPSIS
py3compile [-V [X.Y][-][A.B]] DIR_OR_FILE [-X REGEXPR] pycompile -p PACKAGE DESCRIPTION
Wrapper around Python standard library's py_compile module to byte-compile Python 3 files. OPTIONS
--version show program's version number and exit -h, --help show this help message and exit -f, --force force rebuild of byte-code files even if timestamps are up-to-date -O byte-compile to .pyo files -q, --quiet be quiet -v, --verbose turn verbose mode on -p PACKAGE, --package=PACKAGE specify Debian package name whose files should be bytecompiled -V VRANGE force private modules to be bytecompiled with Python 3 version from given range, regardless of the default Python 3 version in the system. If there are no other options, bytecompile all public modules for installed Python 3 versions that match given range. VER- SION_RANGE examples: o 3.1 version 3.1 only, o 3.1- version 3.1 or newer, o 3.1-3.3 version 3.1 or 3.2, o -4.0 all supported 3.X versions -X REGEXPR, --exclude=REGEXPR exclude items that match given REGEXPR. You may use this option multiple times to build up a list of things to exclude AUTHOR
Piotr Oarowski, 2012-2013 PY3COMPILE(1)