On 09/01/16 00:11, bruce wrote:
> So, as an IDE/shell.. I assume it's not quite Eclipse, butallows you
> to do reasonable editing/snyax tracking/etc.. as well as run apps
> within the window/shell.. I assume breakpoints as well, and a good
> chunk of the rest of the usual IDE functions...
Exactly
Thanks Alan...
So, as an IDE/shell.. I assume it's not quite Eclipse, butallows you
to do reasonable editing/snyax tracking/etc.. as well as run apps
within the window/shell.. I assume breakpoints as well, and a good
chunk of the rest of the usual IDE functions...
What about function completion?
On 08/01/16 19:07, bruce wrote:
> Is IDLE essentially an ide for doing py dev? I see there's a
> windows/linux (rpms) for it.
Yes, its the official IDE for Python.
There is an "unofficial" version called xidle which tends
to get a lot of the new stuff before it makes it into the
official release
Hey guys/gals - list readers
Recently came across someone here mentioning IDLE!! -- not knowing
this. I hit google for a look.
Is IDLE essentially an ide for doing py dev? I see there's a
windows/linux (rpms) for it.
I'm running py.. I normally do $$python to pop up the py env for quick
tests..
On 08/01/16 14:04, sebastian cheung via Tutor wrote:
> * take an s3 destination path as an argument optionally containing the string
> ++DATE++ as a placeholder (e.g. s3://my-bucket/objects/++DATE++/,
> s3://my-bucket/objects/++DATE++/file-++DATE++.txt and s3://my-bucket/objects/
> should all be
On Jan 8, 2016 11:03 AM, "Emil Natan" wrote:
>
> Hello list,
>
> I have a function which receives a string and sends it as a body of an
> email.
>
> It is a part of a program which does certain checks on network
> infrastructure. When a check fails I append error message to a
> error_collector lis
* take an s3 destination path as an argument optionally containing the string
++DATE++ as a placeholder (e.g. s3://my-bucket/objects/++DATE++/,
s3://my-bucket/objects/++DATE++/file-++DATE++.txt and s3://my-bucket/objects/
should all be valid)
I already have something for something more simple, b
Hello list,
I have a function which receives a string and sends it as a body of an
email.
It is a part of a program which does certain checks on network
infrastructure. When a check fails I append error message to a
error_collector list:
if self.check_axfr_refused(ip):
error_collector.appe
On 08/01/16 04:24, Steven D'Aprano wrote:
> I maintain that "constructor" for the most part has to be understood of
> a statement of intention, not a hard definition. Apart from __new__
> itself, which genuinely is special, "constructor" in a language like
> Python refers to the intention of cr