Mark Rees wrote: > I google'd as Sanghyeon said, and the first link pointed me to this: > > http://rhaptos.org/downloads/python/pycvs/ > > From the README.txt > > "pycvs is a python module that wraps the command-line cvs executable." > > You asked for an IronPython or CPython library for cvs. It is CPython > only as it uses the popen2 module but I think it's what you are after.
If popen2 is the only incompatibility, then it should be easy to convert to IronPython using the System.Diagnostics.Process class. We recently built a simple script that runs continuous integration by executing svn commands as subprocesses. Creating something custom should be fairly simple even if this module can't be made to work. Fuzzyman http://www.voidspace.org.uk/python/index.shtml > > Of course if someone wants to create a popen2 module for IronPython, I > am sure Sanghyeon would include it as part of fepy and then pycvs > would be suitable for IronPython. > > Mark > > > On 11/7/06, *Kevien Lee* <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > Hi Seo Sanghyeon, > I had google that,but it seem that there not such lib. > Anyone could advice? > > Thanks > Kevin Lee > > > On Nov 3, 2:46 pm, "Sanghyeon Seo" < [EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>> wrote: > > 2006/11/3, Kevien Lee <[EMAIL PROTECTED] > <mailto:[EMAIL PROTECTED]>>: > > > > > Hi everyone, > > > > > Is there any lib for call the API of CVS? > > > I only found that there just a lib for SVN (PySvn),but not for > CVSGoogle for "python cvs". First hit. > > > > -- > > Seo Sanghyeon > > _______________________________________________ > > users mailing list > > > [EMAIL PROTECTED]://lists.ironpython.com/listinfo.cgi/users-ironpython.com > <http://ironpython.com> > > _______________________________________________ > users mailing list > [email protected] <mailto:[email protected]> > http://lists.ironpython.com/listinfo.cgi/users-ironpython.com > > >------------------------------------------------------------------------ > >_______________________________________________ >users mailing list >[email protected] >http://lists.ironpython.com/listinfo.cgi/users-ironpython.com > > _______________________________________________ users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
