> If I do:
>
> import my_module
> help(my_module)
>
> I'd like to see ONLY help on my_module, NOT help on all the functions
> inherited from the various parent classes . . .
I would do
print my_module.__doc__
HTH,
Martin
--
http://mail.python.org/mailman/listinfo/python-list
On Feb 21, 10:06 am, scsoce <[EMAIL PROTECTED]> wrote:
> I want to profile a function which has some lines of statement. It seem
> that profile module only report function's stats instead of every line
> of code, how can i profile every line of code?
> thanks.
Use the hotshot profiler, and when c
I'm opening up a subprocess like this where slave.py is a text based
app that receives commands and responds with output:
r, w, e = popen2.popen3('python slave.py')
I need to send slave.py a command and see the output,
so I'll do something like:
w.write("command here")
then i'll try this:
w.flus
Neal Becker wrote:
> 7stud wrote:
>
>> On Feb 21, 11:19 am, Neal Becker <[EMAIL PROTECTED]> wrote:
>>> I'm working on a simple extension. Following the classic 'noddy'
>>> example.
>>>
>>> In [15]: cmplx_int32
>>> Out[15]:
>>>
>>> Now I want to add an attribute to this type. More precisely, I w
On Feb 21, 3:27 pm, Tim Lesher <[EMAIL PROTECTED]> wrote:
> On Feb 21, 10:06 am, scsoce <[EMAIL PROTECTED]> wrote:
>
> > I want to profile a function which has some lines of statement. It seem
> > that profile module only report function's stats instead of every line
> > of code, how can i profile
I am attempting to insert NULL values into a database. I have tried to
do this in multiple ways without any success, see below, and haven't
been able to find anything through Google to help out. I am hoping that
I am just overlooking something or that it is a rookie mistake. Below is
a test I came
On Feb 21, 1:17 pm, Dennis Lee Bieber <[EMAIL PROTECTED]> wrote:
> Why imagine... AmigaOS ran -128..+127 (though in practice, one never
> went above +20 as the most time critical system processes ran at that
> level; User programs ran at 0, the Workbench [desktop] ran at +1... I
> think fil
On Feb 20, 6:29 pm, Steven D'Aprano <[EMAIL PROTECTED]
cybersource.com.au> wrote:
> On Wed, 20 Feb 2008 11:36:20 -0800, Amit Gupta wrote:
> > Before I read the message: I screwed up.
>
> > Let me write again
>
> >>> x = re.compile("CL(?P[a-z]+)")
> > # group name "name1" is attached to the match of
[EMAIL PROTECTED] wrote:
> As a "solution" to the problem of wanting a program on my
> computer, it sucks. On Windows I'll DL an install package,
> "accept" a license agreement, click Next a few times (no, I can't
> make a cup of coffee because the minute I step away the "Wizard"
> will ask a ques
Hi all. In C, an assignment statement returns the value assigned. For
instance:
int x
int y = (x = 3)
In the above example, (x=3) returns 3, which is assigned to y.
In python, as far as I can tell, assignment statements don't return
anything:
y = (x = 3)
The above example generates a Syn
I also forgot to mention that this...
import pymssql
TestDB =
pymssql.connect(host='Test',user='test',password='test',database='test')
cursor = TestDB.cursor()
query = """INSERT INTO test.dbo.test (test) VALUES ('%s');"""
cursor.execute(query,(None))
works. While
import pymssql
TestDB =
On Feb 21, 1:43 pm, mrstephengross <[EMAIL PROTECTED]> wrote:
> Hi all. In C, an assignment statement returns the value assigned. For
> instance:
>
> int x
> int y = (x = 3)
>
> In the above example, (x=3) returns 3, which is assigned to y.
>
> In python, as far as I can tell, assignment statem
mrstephengross wrote:
> Hi all. In C, an assignment statement returns the value assigned. For
> instance:
>
> int x
> int y = (x = 3)
>
> In the above example, (x=3) returns 3, which is assigned to y.
>
> In python, as far as I can tell, assignment statements don't return
> anything:
>
>
On Feb 21, 2:43 pm, mrstephengross <[EMAIL PROTECTED]> wrote:
> Hi all. In C, an assignment statement returns the value assigned. For
> instance:
>
> int x
> int y = (x = 3)
>
> In the above example, (x=3) returns 3, which is assigned to y.
>
> In python, as far as I can tell, assignment statem
On Feb 21, 1:48 pm, John Henry <[EMAIL PROTECTED]> wrote:
> On Feb 21, 1:43 pm, mrstephengross <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi all. In C, an assignment statement returns the value assigned. For
> > instance:
>
> > int x
> > int y = (x = 3)
>
> > In the above example, (x=3) returns 3, wh
> What you can't do (that I really miss) is have a tree of assign-and-test
> expressions:
> import re
> pat = re.compile('some pattern')
> if m = pat.match(some_string):
> do_something(m)
Yep, this is exactly what I am (was) trying to do. Oh well Any
clever
Erol Robaina Cepero wrote:
> On 19/02/2008 at 07:12 p.m. Michael Ströder wrote:
>
>> Erol Robaina Cepero wrote:
>>> I need download python-ldap for my plone 3.0.5 that use python 2.4.4.
>>>
>>> Do you know where I can find it?
>> http://python-ldap.sourceforge.net/download.shtml
>
> There I found
John Henry wrote:
> On Feb 21, 1:48 pm, John Henry <[EMAIL PROTECTED]> wrote:
>> On Feb 21, 1:43 pm, mrstephengross <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>>> Hi all. In C, an assignment statement returns the value assigned. For
>>> instance:
>>> int x
>>> int y = (x = 3)
>>> In the above example,
Paul Boddie wrote:
> On 21 Feb, 19:22, Nicola Musatti <[EMAIL PROTECTED]> wrote:
>> On Feb 21, 6:31 pm, Paul Boddie <[EMAIL PROTECTED]> wrote:
>> [...]
>>
>>> The main reason why C++ has declined in usage is because almost
>>> everything of practical value is optional.
>> The main reason why C++ ha
mrstephengross wrote:
>> What you can't do (that I really miss) is have a tree of assign-and-test
>> expressions:
>> import re
>> pat = re.compile('some pattern')
>> if m = pat.match(some_string):
>> do_something(m)
>
> Yep, this is exactly what I am (was) tryin
On Feb 21, 2:06 pm, Jeff Schwab <[EMAIL PROTECTED]> wrote:
> John Henry wrote:
> > On Feb 21, 1:48 pm, John Henry <[EMAIL PROTECTED]> wrote:
> >> On Feb 21, 1:43 pm, mrstephengross <[EMAIL PROTECTED]> wrote:
>
> >>> Hi all. In C, an assignment statement returns the value assigned. For
> >>> instanc
On Thu, 21 Feb 2008 16:37:56 +, tinnews wrote:
> Aahz <[EMAIL PROTECTED]> wrote:
>> In article <[EMAIL PROTECTED]>,
>> <[EMAIL PROTECTED]> wrote:
>> >Aahz <[EMAIL PROTECTED]> wrote:
>> >> In article
>> >> <[EMAIL PROTECTED]>,
>> >> <[EMAIL PROTECTED]> wrote:
>> >>>
>> >>>I had a global varia
> Hi all. In C, an assignment statement returns the value assigned.
No. C doesn't have an assignment statement. Instead, in C, assignment
is an expression (just like a binary operation or a function call);
that expression evaluates to the value assigned (i.e. the result is
the value, the assignmen
Sorry to butt in but I am shopping for some ideas.
I am interested in putting together a programming course for non-
programmers (outside the computer science domain) based on Pyhton. I
envision the course
similar to ones that used old-Basic interpreter.
Any one out there has such a course (alrea
"Jeff Schwab" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
| That's the same behavior I would expect in C, on the grounds that C
| What I found confusing at first was
| that the same variable will either directly store or merely refer to an
| object, depending on the type of the o
On Feb 22, 3:18 am, Peter Otten <[EMAIL PROTECTED]> wrote:
> Alejandro Dubrovsky wrote:
> > def autoassign(_init_):
> > import inspect
> > import functools
>
> > argnames, _, _, defaults = inspect.getargspec(_init_)
> > argnames = argnames[1:]
>
> > indentati
Hello Kevin,
> "Lift" (which calls the Tk command "raise") doesn't work this way, at
> least not under Aqua. If your application has focus, "lift" will raise
> the widget being called to the top of the stacking order. However, it
> will not make the application frontmost. To do this you'd have to
On Feb 21, 1:22 pm, Nicola Musatti <[EMAIL PROTECTED]> wrote:
> There are other downsides to garbage collection, as the fact that it
> makes it harder to implement the Resource Acquisition Is
> Initialization idiom, due to the lack of deterministic destruction.
That's not a downside: it's at least
On 21 fév, 23:19, John Henry <[EMAIL PROTECTED]> wrote:
> On Feb 21, 2:06 pm, Jeff Schwab <[EMAIL PROTECTED]> wrote:
>
>
>
> > John Henry wrote:
> > > On Feb 21, 1:48 pm, John Henry <[EMAIL PROTECTED]> wrote:
> > >> On Feb 21, 1:43 pm, mrstephengross <[EMAIL PROTECTED]> wrote:
>
> > >>> Hi all. In
Hey guys, I am interested in knowing, what new Web Development projects you
are doing, curious to know, what data base you use, and if you are using
Linux or Windows platform. Also, will like to know, if there are any
alternatives to Adobe products, that you may be using
--
View this message in
> What you can't do (that I really miss) is have a tree of assign-and-test
> expressions:
>
> import re
> pat = re.compile('some pattern')
>
> if m = pat.match(some_string):
> do_something(m)
> else if m = pat.match(other_string):
> do_other_t
Jayson Barley wrote:
> I am attempting to insert NULL values into a database. I have tried to
> do this in multiple ways without any success, see below, and haven't
> been able to find anything through Google to help out. I am hoping that
> I am just overlooking something or that it is a rookie
On 21 fév, 13:57, Paul Boddie <[EMAIL PROTECTED]> wrote:
> On 21 Feb, 13:04, [EMAIL PROTECTED] wrote:
>
> > re DLing source
>
> > As a "solution" to the problem of wanting a program on my computer, it
> > sucks.
>
> It doesn't suck if you're just installing one program, but if there
> are a lot of
On 21 fév, 23:06, Jeff Schwab <[EMAIL PROTECTED]> wrote:
> John Henry wrote:
> > On Feb 21, 1:48 pm, John Henry <[EMAIL PROTECTED]> wrote:
> >> On Feb 21, 1:43 pm, mrstephengross <[EMAIL PROTECTED]> wrote:
>
> >>> Hi all. In C, an assignment statement returns the value assigned. For
> >>> instance:
[EMAIL PROTECTED] wrote:
> On 21 fév, 23:19, John Henry <[EMAIL PROTECTED]> wrote:
>> On Feb 21, 2:06 pm, Jeff Schwab <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>>> John Henry wrote:
On Feb 21, 1:48 pm, John Henry <[EMAIL PROTECTED]> wrote:
> On Feb 21, 1:43 pm, mrstephengross <[EMAIL PROTECTED]>
john_sm3853([EMAIL PROTECTED])@2008.02.21 15:34:44 -0800:
>
> Hey guys, I am interested in knowing, what new Web Development projects you
> are doing, curious to know, what data base you use, and if you are using
> Linux or Windows platform.
IMHO the best platform right now is:
Apache 2 on Li
Jeff Schwab wrote:
> [EMAIL PROTECTED] wrote:
[...]
>> Now there's no reason to feel nervous about this. All you have to
>> remember is that Python never copy anything unless explicitely asked
>> for.
>
> It's not that simple. After a statement like:
>
> a = b
>
> Whether a and b denote t
mrstephengross wrote:
>> What you can't do (that I really miss) is have a tree of assign-and-test
>> expressions:
>> import re
>> pat = re.compile('some pattern')
>> if m = pat.match(some_string):
>> do_something(m)
>
> Yep, this is exactly what I am (was) tryin
Carl Banks wrote:
> On Feb 21, 1:22 pm, Nicola Musatti <[EMAIL PROTECTED]> wrote:
>> There are other downsides to garbage collection, as the fact that it
>> makes it harder to implement the Resource Acquisition Is
>> Initialization idiom, due to the lack of deterministic destruction.
>
> That's no
Terry Reedy wrote:
> "Jeff Schwab" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
>
> | That's the same behavior I would expect in C, on the grounds that C
> | What I found confusing at first was
> | that the same variable will either directly store or merely refer to an
> | object
[EMAIL PROTECTED] wrote:
> On 21 fév, 23:06, Jeff Schwab <[EMAIL PROTECTED]> wrote:
>> John Henry wrote:
>>> On Feb 21, 1:48 pm, John Henry <[EMAIL PROTECTED]> wrote:
On Feb 21, 1:43 pm, mrstephengross <[EMAIL PROTECTED]> wrote:
> Hi all. In C, an assignment statement returns the value ass
Steve Holden wrote:
> Jeff Schwab wrote:
>> [EMAIL PROTECTED] wrote:
> [...]
>>> Now there's no reason to feel nervous about this. All you have to
>>> remember is that Python never copy anything unless explicitely asked
>>> for.
>>
>> It's not that simple. After a statement like:
>>
>> a = b
>
Steve Holden wrote:
> mrstephengross wrote:
>>> What you can't do (that I really miss) is have a tree of assign-and-test
>>> expressions:
>>> import re
>>> pat = re.compile('some pattern')
>>> if m = pat.match(some_string):
>>> do_something(m)
>>
>> Yep, this is
Steve Holden wrote:
> Neal Becker wrote:
>> 7stud wrote:
>>
>>> On Feb 21, 11:19 am, Neal Becker <[EMAIL PROTECTED]> wrote:
I'm working on a simple extension. Following the classic 'noddy'
example.
In [15]: cmplx_int32
Out[15]:
Now I want to add an attribute t
On Feb 20, 4:19 am, Stani <[EMAIL PROTECTED]> wrote:
> Fred Pacquier fredp.lautre.net> writes:
>
>
>
> > Steve Holden holdenweb.com> said :
>
> > > Perhaps you could put a link to the source on the Windows instalL page?
> > > I don't mind being a second-class citizen, but it's annoying to have to
Neal Becker wrote:
> Steve Holden wrote:
>
>> Neal Becker wrote:
>>> 7stud wrote:
>>>
On Feb 21, 11:19 am, Neal Becker <[EMAIL PROTECTED]> wrote:
> I'm working on a simple extension. Following the classic 'noddy'
> example.
>
> In [15]: cmplx_int32
> Out[15]:
>
>
John Nagle <[EMAIL PROTECTED]> writes:
> This has nothing to do with language efficiency or whether the
> language is interpreted. Of the languages listed with both hiding
> and safety, Ada and Modula 3 are always compiled to hard machine code,
> and Java can be. (GCC offers that option.)
Bu
On Feb 21, 10:09 am, [EMAIL PROTECTED] wrote:
> I've written the following script based on information I have found on
> the web. The purpose of the script is to start an HTTP listener on
> the machine it's running on that will give status on a particular
> service running on that system. I've tr
Steve Holden wrote:
> Neal Becker wrote:
>> Steve Holden wrote:
>>
>>> Neal Becker wrote:
7stud wrote:
> On Feb 21, 11:19 am, Neal Becker <[EMAIL PROTECTED]> wrote:
>> I'm working on a simple extension. Following the classic 'noddy'
>> example.
>>
>> In [15]: cmplx_
On Feb 17, 6:18 am, Terry Jones <[EMAIL PROTECTED]> wrote:
> Hi Arnaud & Benjamin
>
> Here's a version that's a bit more general. It handles keys whose values
> are empty dicts (assigning None to the value in the result), and also dict
> keys that are not strings (see the test data below). It's als
On Feb 21, 6:48 pm, [EMAIL PROTECTED] wrote:
> Sorry to butt in but I am shopping for some ideas.
>
> I am interested in putting together a programming course for non-
> programmers (outside the computer science domain) based on Pyhton. I
> envision the course
> similar to ones that used old-Basic
On Feb 21, 4:48 pm, [EMAIL PROTECTED] wrote:
> Sorry to butt in but I am shopping for some ideas.
>
> I am interested in putting together a programming course for non-
> programmers (outside the computer science domain) based on Pyhton. I
> envision the course
> similar to ones that used old-Basic
On Feb 21, 7:17 pm, Jeff Schwab <[EMAIL PROTECTED]> wrote:
> Carl Banks wrote:
> > On Feb 21, 1:22 pm, Nicola Musatti <[EMAIL PROTECTED]> wrote:
> >> There are other downsides to garbage collection, as the fact that it
> >> makes it harder to implement the Resource Acquisition Is
> >> Initializatio
In article <[EMAIL PROTECTED]>,
Michael Goerz <[EMAIL PROTECTED]> wrote:
> But as it seems, a keyboard interrupt will automatically pass down to
> the subprocesses, causing them to abort. Is there a way that I can
> prevent the subprocesses from being canceled by a keyboard interrupt?
You mi
On Feb 21, 11:17 am, "Reedick, Andrew" <[EMAIL PROTECTED]> wrote:
> So I wouldn't be
> quick to dismiss the notion that Java/C#/C++ are more newbie-safe than
> Python. =/
FWIW, when I posted my comment about C++, I was mocking the article
writer's notion that it was static typing and compile-tim
On Feb 21, 7:21 pm, Jeff Schwab <[EMAIL PROTECTED]> wrote:
> Steve Holden wrote:
> > Jeff Schwab wrote:
> >> [EMAIL PROTECTED] wrote:
> > [...]
> >>> Now there's no reason to feel nervous about this. All you have to
> >>> remember is that Python never copy anything unless explicitely asked
> >>> fo
Is there a open souce IDE writen by C( C++) or partly writen by C( C+
+)?
--
http://mail.python.org/mailman/listinfo/python-list
On Feb 21, 8:04 pm, Benjamin <[EMAIL PROTECTED]> wrote:
> On Feb 17, 6:18 am, Terry Jones <[EMAIL PROTECTED]> wrote:
>
> > Hi Arnaud & Benjamin
>
> > Here's a version that's a bit more general. It handles keys whose values
> > are empty dicts (assigning None to the value in the result), and also di
breal wrote:
> Thanks for the reply. I understand that this is normal locking
> behavior. What I am looking for is a standard method to either loop
> the query until the table is unlocked, or put the query into some sort
> of queue. Basically my queries work like this.
>
> Request comes in
>
Folks,
I am trying to build an interactive test application. I
would like to generate interactive commands to an existing
server(ftpd)
so commands like ftp 192.68.20.1
ace>login:
ace >password :
I should be able to mimic human intervention. Is this possible in
perl.
I do not w
In article <[EMAIL PROTECTED]>,
Jeff Schwab <[EMAIL PROTECTED]> wrote:
>[EMAIL PROTECTED] wrote:
>>
>> There's nothing like a variable "storing" anything in Python. All you
>> have are names to (references to) objects binding in a namespace. Now
>> the fact is that some types are mutable and othe
On Feb 21, 9:13 pm, George Sakkis <[EMAIL PROTECTED]> wrote:
> On Feb 21, 8:04 pm, Benjamin <[EMAIL PROTECTED]> wrote:
>
>
>
> > On Feb 17, 6:18 am, Terry Jones <[EMAIL PROTECTED]> wrote:
>
> > > Hi Arnaud & Benjamin
>
> > > Here's a version that's a bit more general. It handles keys whose values
>
[EMAIL PROTECTED] wrote:
> Folks,
> I am trying to build an interactive test application. I
> would like to generate interactive commands to an existing
> server(ftpd)
> so commands like ftp 192.68.20.1
> ace>login:
> ace >password :
> I should be able to mimic human intervent
Carl Banks <[EMAIL PROTECTED]> writes:
> FWIW, when I posted my comment about C++, I was mocking the article
> writer's notion that it was static typing and compile-time checking
> that made Java and C# "safer" for newbies, by presenting an example
> that clearly defied that. I was taking it for g
The Grant Institute's Grants 101: Professional Grant Proposal Writing Workshop
will be held in Vancouver, British Columbia, April 14 - 16, 2008. Interested development professionals, researchers, faculty, and graduate students should register as soon as possible, as demand means that seats will
Carl Banks wrote:
> On Feb 21, 7:17 pm, Jeff Schwab <[EMAIL PROTECTED]> wrote:
>> Carl Banks wrote:
>>> On Feb 21, 1:22 pm, Nicola Musatti <[EMAIL PROTECTED]> wrote:
There are other downsides to garbage collection, as the fact that it
makes it harder to implement the Resource Acquisition
George Sakkis wrote:
> On Feb 21, 7:21 pm, Jeff Schwab <[EMAIL PROTECTED]> wrote:
>> Steve Holden wrote:
>>> Jeff Schwab wrote:
[EMAIL PROTECTED] wrote:
>>> [...]
> Now there's no reason to feel nervous about this. All you have to
> remember is that Python never copy anything unless ex
Aahz wrote:
> In article <[EMAIL PROTECTED]>,
> Jeff Schwab <[EMAIL PROTECTED]> wrote:
>> [EMAIL PROTECTED] wrote:
>>> There's nothing like a variable "storing" anything in Python. All you
>>> have are names to (references to) objects binding in a namespace. Now
>>> the fact is that some types are
Paul Rubin wrote:
> It just seems to me that there is a killer language just around the
> corner, with Python's ease-of-use but with a serious compile-time type
> system, maybe some kind of cross between ML and Python.
Could Boo or Cobra fit the bill ? If not, what's missing at a
technical level
Jeff Schwab <[EMAIL PROTECTED]> writes:
> The most traditional, easiest way to open a file in C++ is to use an
> fstream object, so the file is guaranteed to be closed when the
> fstream goes out of scope.
Python has this too, except it's using a special type of scope
created by the "with" state
Jeff Schwab <[EMAIL PROTECTED]> writes:
> So what is the "variable?" Or is Python the first HLL I've ever heard
> of that didn't have variables?
I don't know what other HLL's you use, but some languages don't even
have mutable values.
--
http://mail.python.org/mailman/listinfo/python-list
Hallöchen!
Jeff Schwab writes:
> Aahz wrote:
>
>> [...]
>>
>> Notice very very carefully that Bruno is not using "variable".
>> Many expert Python programmers strongly prefer to talk about
>> "names" instead of "variables" (especially when explaining the
>> Python object model) precisely because
George Sakkis <[EMAIL PROTECTED]> writes:
> Could Boo or Cobra fit the bill ? If not, what's missing at a
> technical level (i.e. ignoring current maturity, community size,
> marketing, etc.) ?
I just spent a minute looking at these and both are interesting,
though Cobra looks .NET specific and I'
On Feb 22, 12:26 am, Jeff Schwab <[EMAIL PROTECTED]> wrote:
> > On the other hand, "a = b" does always the same thing; unlike C++, '='
> > is not an operator and therefore it cannot be overriden by the class
> > of 'a'.
>
> "Not an operator?" Then what is it?
In this context, it's just the token
Hai..
I have planned to access the web page via python coding, for that I
use
url = 'http:\\username:[EMAIL PROTECTED]'
urllib.urlopen(url)
It opens fine when its correct web page else it hangs there So I
have planned to start a timer when i launch the web pa
zaley wrote:
> Is there a open souce IDE writen by C( C++) or partly writen by C( C+
> +)?
Tons of them. What do you want to do with it?
Stefan
--
http://mail.python.org/mailman/listinfo/python-list
On Feb 22, 12:23 am, Jeff Schwab <[EMAIL PROTECTED]> wrote:
> Carl Banks wrote:
> > On Feb 21, 7:17 pm, Jeff Schwab <[EMAIL PROTECTED]> wrote:
> >> Carl Banks wrote:
> >>> On Feb 21, 1:22 pm, Nicola Musatti <[EMAIL PROTECTED]> wrote:
> There are other downsides to garbage collection, as the fa
Jeff Schwab <[EMAIL PROTECTED]> writes:
> Aahz wrote:
> > Notice very very carefully that Bruno is not using "variable".
> > Many expert Python programmers strongly prefer to talk about
> > "names" instead of "variables" (especially when explaining the
> > Python object model) precisely because us
Hi all,
I need urllib2 do perform series of HTTP requests with cookie from
PREVIOUS request(like our browsers usually do ). Many people suggest I
use some library(e.g. pycURL) instead but I guess it's good practise
for a python beginner to DIY something rather than use existing tools.
So my probl
My project need a simple scripts debugger . I hope I can find
something instructive
Stefan Behnel 写道:
> zaley wrote:
> > Is there a open souce IDE writen by C( C++) or partly writen by C( C+
> > +)?
>
> Tons of them. What do you want to do with it?
>
> Stefan
--
http://mail.python.org/mailman/lis
Robert Bossy <[EMAIL PROTECTED]> on Wed, 20 Feb 2008 09:29:12
+0100 didst step forth and proclaim thus:
> Sam Peterson wrote:
>> I've been googling for a while now and cannot find a good way to deal
>> with this.
>>
>> I have a slightly messy python program I wrote that I've historically
>> just r
Of course, python scripts debugger
On 2月22日, 下午3时22分, zaley <[EMAIL PROTECTED]> wrote:
> My project need a simple scripts debugger . I hope I can find
> something instructive
>
> Stefan Behnel 写道:
>
> > zaley wrote:
> > > Is there a open souce IDE writen by C( C++) or partly writen by C( C+
> > >
101 - 182 of 182 matches
Mail list logo