Re: [Tutor] Python workspace - IDE and version control

2010-01-19 Thread Mark Tolonen
"Kent Johnson" wrote in message news:1c2a2c591001190905u28db4464hc1d1461ad26e9...@mail.gmail.com... On Tue, Jan 19, 2010 at 9:12 AM, Andreas Kostyrka wrote: The cool part about git that I've not yet replicated with hg is git add -p which allows you to seperate out different changes in the

Re: [Tutor] Python workspace - IDE and version control

2010-01-19 Thread ALAN GAULD
> >>> I use plain old RCS for version control because its just me working >> I prefer RCS - two commands is all you need (ci/co) :-) > > Certainly, OTOH, you get only file based commits, no upgrade path > should you ever decide that you need to go multiuser > (and multiuser can be just you wit

Re: [Tutor] Python workspace - IDE and version control

2010-01-19 Thread Alan Gauld
"Kent Johnson" wrote I use plain old RCS for version control because its just me working on the code. hg init # create a repository md RCS in rcs hg st # show what will be checked in hg add # mark new files as to be added Don't need any of that stuff hg ci -m "Initial checkin" # the

Re: [Tutor] Python workspace - IDE and version control

2010-01-19 Thread Kent Johnson
On Tue, Jan 19, 2010 at 9:12 AM, Andreas Kostyrka wrote: > The cool part about git that I've not yet replicated with hg is git add -p > which allows you to seperate out > different changes in the same file. Sounds like the record and crecord extensions come close, anyway: http://mercurial.seleni

Re: [Tutor] Python workspace - IDE and version control

2010-01-19 Thread Kent Johnson
On Mon, Jan 18, 2010 at 4:17 PM, Alan Gauld wrote: > I use plain old RCS for version control because its just me working on the > code. Wow. You should take a look at Mercurial. It is so easy to set up a Mercurial repository for a local project - just hg init # create a repository hg st # show w

Re: [Tutor] Python workspace - IDE and version control

2010-01-18 Thread muhamed niyas
I am using Netbeans, it has many features. The following IDEs i used before Netbeanse Anjuta, Komodo, python IDLE, etc.. There is a python plugin in Netbease and also it has subversion integrated. On Tue, Jan 19, 2010 at 5:59 AM, Alan Gauld wrote: > > "Matthew Lee" wrote > > > I usually just

Re: [Tutor] Python workspace - IDE and version control

2010-01-18 Thread Alan Gauld
"Matthew Lee" wrote I usually just use NetBeans or the Python IDLE. I prefer to use NetBeans because it's easier to change and modify code and test. And also because I like to use Jython. Anything wrong with my setup? If it works for you then its fine. IDEs, editors etc are all very perso

Re: [Tutor] Python workspace - IDE and version control

2010-01-18 Thread Matthew Lee
I usually just use NetBeans or the Python IDLE. I prefer to use NetBeans because it's easier to change and modify code and test. And also because I like to use Jython. Anything wrong with my setup? On Tue, Jan 19, 2010 at 8:17 AM, Alan Gauld wrote: > > wrote > > > order to create an efficient

Re: [Tutor] Python workspace - IDE and version control

2010-01-18 Thread Alan Gauld
wrote order to create an efficient and productive Python programming workspace: IDE and Version Control. Both important, although an IDE is perhaps a generous description of vim! :-) Obviously, no tool can think for you. The real programming work of course is going on in your brain. I am c

[Tutor] Python workspace - IDE and version control

2010-01-18 Thread galaxywatcher
I want to share a couple of insights that I had getting started with Python that I did not come across in the literature all that often. I am discovering that there are two primary supporting tools needed in order to create an efficient and productive Python programming workspace: IDE and V

Re: [Tutor] python workspace

2009-06-06 Thread Dave Kuhlman
On Tue, Jun 02, 2009 at 04:40:43PM -0500, W W wrote: > >On Tue, Jun 2, 2009 at 1:30 PM, Dave Angel <[1]da...@ieee.org> wrote: > > You could use the commercial Komodo IDE. It's got a debugger that > runs the Python code as a separate process, so it can be used for > GUI debuggi

Re: [Tutor] python workspace -- vars() vs locals()

2009-06-03 Thread Emile van Sebille
On 6/3/2009 12:50 AM spir said... Le Tue, 02 Jun 2009 10:47:38 -0700, Emile van Sebille s'exprima ainsi: On 6/2/2009 8:54 AM roberto said... hello, i'd like to ask if there is anything in python which helps to see what variables have been defined and their type and their dimension etc; In ap

Re: [Tutor] python workspace -- vars() vs locals()

2009-06-03 Thread spir
Le Tue, 02 Jun 2009 10:47:38 -0700, Emile van Sebille s'exprima ainsi: > On 6/2/2009 8:54 AM roberto said... > > hello, > > i'd like to ask if there is anything in python which helps to see what > > variables have been defined and their type and their dimension etc; > > In appropriate contexts,

Re: [Tutor] python workspace

2009-06-02 Thread Alan Gauld
"roberto" wrote i'd like to ask if there is anything in python which helps to see what variables have been defined and their type and their dimension etc; Bear in mind that Python variables are simply names so they have no type or dimension information. That belongs to the objects to which

Re: [Tutor] python workspace

2009-06-02 Thread W W
On Tue, Jun 2, 2009 at 1:30 PM, Dave Angel wrote: > roberto wrote: > > On Tue, Jun 2, 2009 at 10:54 AM, roberto wrote: >> >> >>> >> >>> >> hello, >>> >> i'd like to ask if there is anything in python which helps to see what >>> >> variables have been defined and their type and their dimension

Re: [Tutor] python workspace

2009-06-02 Thread Emile van Sebille
On 6/2/2009 11:34 AM Gökhan SEVER said... In Ipython Good for IPYTHON -- I wasn't presuming that. Emile ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] python workspace

2009-06-02 Thread Gökhan SEVER
In Ipython If you just type local() you get a pretty printed out without a need for an explicit pprint call. Secondly, Ipython works only for 2.4-5-6 as of now. Here what the documentation says: "We have not begun to test IPython on Python 2.6 or 3.0, but we expect it will work with some minor c

Re: [Tutor] python workspace

2009-06-02 Thread Dave Angel
roberto wrote: On Tue, Jun 2, 2009 at 10:54 AM, roberto wrote: >> >> hello, >> i'd like to ask if there is anything in python which helps to see what >> variables have been defined and their type and their dimension etc; >> >> if any of you has ever used Matlab, i mean something really sim

Re: [Tutor] python workspace

2009-06-02 Thread Emile van Sebille
On 6/2/2009 8:54 AM roberto said... hello, i'd like to ask if there is anything in python which helps to see what variables have been defined and their type and their dimension etc; In appropriate contexts, you may be able to use a variant of: from pprint import pprint pprint (locals()) HTH,

Re: [Tutor] python workspace

2009-06-02 Thread roberto
On Tue, Jun 2, 2009 at 6:07 PM, Gökhan SEVER wrote: > Hi, > > Have you tried Ipython? > > https://launchpad.net/ipython not yet > > And also there is and on-going work called pydee > (http://code.google.com/p/pydee/) which they plan to integrate Ipython into > a GUI very similar to the one in Mat

Re: [Tutor] python workspace

2009-06-02 Thread Lie Ryan
roberto wrote: > hello, > i'd like to ask if there is anything in python which helps to see what > variables have been defined and their type and their dimension etc; > > if any of you has ever used Matlab, i mean something really similar to > its workspace, where all the user created variables ar

Re: [Tutor] python workspace

2009-06-02 Thread Gökhan SEVER
Hi, Have you tried Ipython? https://launchpad.net/ipython And also there is and on-going work called pydee ( http://code.google.com/p/pydee/) which they plan to integrate Ipython into a GUI very similar to the one in Matlab. Gökhan On Tue, Jun 2, 2009 at 10:54 AM, roberto wrote: > hello, >

[Tutor] python workspace

2009-06-02 Thread roberto
hello, i'd like to ask if there is anything in python which helps to see what variables have been defined and their type and their dimension etc; if any of you has ever used Matlab, i mean something really similar to its workspace, where all the user created variables are stored and constantly upd