Looking out a module for Subversion

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Dudeja, Rajat

    Looking out a module for Subversion

    Hi,

    I'm new to Python. I only have read "Byte of Python" by Swaroop C H just
    to be familiar with sytax of python. I've installed Python 2.5 from
    Active State and using its PythonWin Editor / interpreter. This,
    unfortunaltely, does not help in debugging.

    I'm looking for an open source IDE / editor that has source level
    debugging. Please suggest some tool.

    I'm intending to write a testing tool that uses Subversion. Is there
    some module available for subversion, out of the box, that I can import
    in my script?

    Regards,
    Rajat

    Notice: This e-mail is intended solely for use of the individual or entity to which it is addressed and may contain information that is proprietary, privileged, company confidential and/or exempt from disclosure under applicable law. If the reader is not the intended recipient or agent responsible for delivering the message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If this communication has been transmitted from a U.S.. location it may also contain data subject to the International Traffic inArms Regulations or U.S. Export Administration Regulations and cannot be disseminated, distributed or copied to foreign nationals, residing in the U.S. or abroad, without the prior approval of the U.S. Department of State orappropriate export licensing authority. If you have received this communication in error, please notify the sender by reply e-mail or collect telephone call and delete or destroy all copies of this e-mail message, any physical copies made of this e-mail message and/or any file attachment(s).


  • Wojtek Walczak

    #2
    Re: Looking out a module for Subversion

    Dnia Tue, 12 Aug 2008 04:25:50 -0400, Dudeja, Rajat napisa³(a):
    Hi,
    >
    I'm new to Python. I only have read "Byte of Python" by Swaroop C H just
    to be familiar with sytax of python. I've installed Python 2.5 from
    Active State and using its PythonWin Editor / interpreter. This,
    unfortunaltely, does not help in debugging.
    >
    I'm looking for an open source IDE / editor that has source level
    debugging. Please suggest some tool.
    >
    I'm intending to write a testing tool that uses Subversion. Is there
    some module available for subversion, out of the box, that I can import
    in my script?
    There is no such module in standard library, but you can try
    an external one. Check: http://pysvn.tigris.org/


    --
    Regards,
    Wojtek Walczak,

    Comment

    • Ken Starks

      #3
      Re: Looking out a module for Subversion

      Dudeja, Rajat wrote:
      Hi,
      >
      I'm new to Python. I only have read "Byte of Python" by Swaroop C H just
      to be familiar with sytax of python. I've installed Python 2.5 from
      Active State and using its PythonWin Editor / interpreter. This,
      unfortunaltely, does not help in debugging.
      >
      I'm looking for an open source IDE / editor that has source level
      debugging. Please suggest some tool.
      >
      I'm intending to write a testing tool that uses Subversion. Is there
      some module available for subversion, out of the box, that I can import
      in my script?
      >
      Regards,
      Rajat
      >
      I've recently started using Eclipse for my python projects, and I'm
      pretty happy with it.
      you can easily get:
      + syntax highlighting
      + code collapsing
      + code completion
      + breakpoints, etc
      + TODO: reminders
      + unit tests

      and, of course, you can also use subversion with Eclipse.
      + unit tests

      Comment

      Working...