"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
> >>> 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
"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
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
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
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
"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
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
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
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
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
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
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,
"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
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
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
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
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
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,
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
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
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,
>
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
23 matches
Mail list logo