Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   ANNOUNCE: tclpython-3.1 (http://www.velocityreviews.com/forums/t318822-announce-tclpython-3-1-a.html)

Jean-Luc Fontaine 06-25-2003 08:44 AM

ANNOUNCE: tclpython-3.1
 
### CHANGES ###

--- version 3.1 ---
- added Tcl stubs support (thanks to Georgios Petasis)
- removed non public Tcl namespace code in C source
- generated and tested on a Red Hat 9 system with gcc 3.3

### README ###

tclpython version 3.1: a Python package for Tcl

This package allows the execution of Python (version 2.2 or above) code
from a Tcl interpreter, as in:


package require tclpython
set interpreter [python::interp new]
$interpreter exec {print("Hello World")}
$interpreter eval 3/2.0
python::interp delete $interpreter


You can actually create several Python interpreters this way, if the
tclpython package was linked against a Python library compiled with
threads support, otherwise only 1 Python interpreter can exist at a
time.

This library is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.

This library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

###

you may find it now at my homepage:

http://jfontain.free.fr/tclpython-3.1.tar.gz
http://jfontain.free.fr/tclpython-3.1-1.i386.rpm
http://jfontain.free.fr/tclpython-3.1-1.spec
http://jfontain.free.fr/tclpython.htm

Jean-Luc Fontaine (http://jfontain.free.fr/)


All times are GMT. The time now is 11:55 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57