tware or interest.
-Original Message-
From: Tutor On Behalf Of
Alan Gauld via Tutor
Sent: Tuesday, September 3, 2024 4:41 AM
To: tu...@python.org
Cc: python-list@python.org
Subject: Re: [Tutor] Getting a Process.start() error pickle.PicklingError:
Can't pickle : it's not found
On 9/2/24 11:36, Barry Scott wrote:
On 2 Sep 2024, at 15:00, marc nicole via Python-list
wrote:
I am using Python 2.7 on Windows 10
Why? Install Python 3.12 and it will be easier to get help and support.
If you have legacy that still needs porting then you can install 3.12 along side
the
ore or after the error message? It might make things easier to
> debug(clearer error traceback) if you put the code to create the thread
> into a separate function?
>
> def do_Something(text)...
>
> def start(fn):
> q = Process
>q.start()
>
> if __name_
>
> On 2 Sep 2024, at 15:00, marc nicole via Python-list
> wrote:
>
> I am using Python 2.7 on Windows 10
Why? Install Python 3.12 and it will be easier to get help and support.
If you have legacy that still needs porting then you can install 3.12 along side
the unsupported 3.12.
Barry
--
PicklingError: Can't pickle : it's not found as
__builtin__.module
anybody could provide an alternative to call the function do_something() in
a separate thread ?
--
https://mail.python.org/mailman/listinfo/python-list
On Sun, Nov 13, 2022 at 4:45 PM DFS wrote:
> In code, list.clear is just ignored.
> At the terminal, list.clear shows
>
>
>
> in code:
> x = [1,2,3]
> x.clear
> print(len(x))
> 3
>
> at terminal:
> x = [1,2,3]
> x.clear
>
> print(len(x))
> 3
>
>
> Caused me an hour of frustration before I notic
On Thu, 24 Nov 2022 at 06:26, Stefan Ram wrote:
>
> Jon Ribbens writes:
> >If you want to catch this sort of mistake automatically then you need
> >a linter such as pylint:
>
> output
>
> , line 1
> list.clear
> Warning: Attribute used as statement.
>
> , line 5
> list.clear
> Warning: Attribut
: Python-list On
Behalf Of Chris Angelico
Sent: Tuesday, November 15, 2022 6:16 PM
To: python-list@python.org
Subject: Re: In code, list.clear doesn't throw error - it's just ignored
On Wed, 16 Nov 2022 at 10:11, wrote:
>
> That is clear, Cameron, but on my python interpreter values
On Wed, 16 Nov 2022 at 10:11, wrote:
>
> That is clear, Cameron, but on my python interpreter values evaluated on the
> command line ARE saved:
>
> >>> numb = 5
> >>> 5 + numb
> 10
> >>> numb
> 5
> >>> _ + _ + 1
> 11
That's a REPL feature.
ChrisA
--
https://mail.python.org/mailman/listinfo/pyth
I grant generally a naked evaluation is generally an error. LOL!
-Original Message-
From: Python-list On
Behalf Of Cameron Simpson
Sent: Tuesday, November 15, 2022 4:13 AM
To: python-list@python.org
Subject: Re: In code, list.clear doesn't throw error - it's just ignored
On 15Nov
On 15Nov2022 00:45, avi.e.gr...@gmail.com wrote:
What would be the meaning of an ordering relation determining what is
MORE VALID?
Are you asking what criterion would rate:
clearx = x.clear
as "more" valid than:
x.clear
on its own?
I don't want to speak for the OP, but I'd think t
22 9:34 PM
To: python-list@python.org
Subject: Re: In code, list.clear doesn't throw error - it's just ignored
On 14Nov2022 19:15, Dennis Lee Bieber wrote:
> There is also the minor facet that "x.clear" can be bound to a
>different name...
>
>>>&g
On 14Nov2022 19:15, Dennis Lee Bieber wrote:
There is also the minor facet that "x.clear" can be bound to a
different name...
x = [1, 2, 3.145926536, "Pie"]
clearx = x.clear
x
[1, 2, 3.145926536, 'Pie']
clearx()
x
[]
I think the OP would take the stance that this:
clearx =
On Tue, 15 Nov 2022 09:11:10 +1100, Cameron Simpson
declaimed the following:
>On 13Nov2022 22:23, DFS wrote:
>>This is an easy check for the interpreter to make.
>
>It really isn't, given that (a) this isn't known by the interpreter to
>be a `list` until runtime and (b) that would need embeddin
On 13Nov2022 22:23, DFS wrote:
On 11/13/2022 9:11 PM, Chris Angelico wrote:
[ ... `x.clear` ... ]
No part of it is invalid, so nothing causes a problem. For instance,
you can write this:
If it wastes time like that it's invalid.
It's a valid expression.
It looks to your eye li
On Tue, 15 Nov 2022 at 05:57, Stefan Ram wrote:
>
> Michael Speer writes:
> >Python doesn't care what an expression returns.
>
> In my English, functions return values,
> expression are being evaluated to a value.
> The evaluation of a function yields or
> produces a value. Expressions do
On 2022-11-14, Stefan Ram wrote:
> Jon Ribbens writes:
>>"""Create an array and print its length"""
>>array = [1, 2, 3]
>>array.clear
>
> BTW: Above, there are /two/ expression statements
> with no effect; the other one is
>
> """Create an array and print its length"""
>
> . Apparently, lin
you don’t:
“Statement seems to have no effect and can be replaced with a function call to
have effect”
From: Python-list on
behalf of DFS
Date: Sunday, November 13, 2022 at 7:46 PM
To: python-list@python.org
Subject: In code, list.clear doesn't throw error - it's just ignored
***
Am Mon, Nov 14, 2022 at 02:13:34AM + schrieb MRAB:
> But if it's an expression where it's expecting a statement and it's not a
> call, then
> it's probably a bug.
That "probably" makes it suitable for a linter, as was pointed out.
Karsten
--
GPG 4
tance,
you can write this:
If it wastes time like that it's invalid.
It's not invalid. In the REPL for example, it does something useful:
>>> x = [1, 2, 3]
>>> x.clear
Others have shown instances where writing a method or function without
calling it are useful in
On 14/11/2022 12.12, DFS wrote:
On 11/13/2022 5:20 PM, Jon Ribbens wrote:
On 2022-11-13, DFS wrote:
In code, list.clear is just ignored.
At the terminal, list.clear shows
in code:
x = [1,2,3]
x.clear
print(len(x))
3
at terminal:
x = [1,2,3]
x.clear
print(len(x))
3
Caused me an hour of f
On Mon, 14 Nov 2022 at 18:00, Greg Ewing wrote:
>
> On 14/11/22 3:13 pm, MRAB wrote:
> > But if it's an expression where it's expecting a statement and it's not
> > a call, then it's probably a bug.
>
> The key word there is "probably". If t
On 14/11/22 3:13 pm, MRAB wrote:
But if it's an expression where it's expecting a statement and it's not
a call, then it's probably a bug.
The key word there is "probably". If there's any chance it
could be not a bug, it can't be an error. At most
t; $ cat test.py
> >>> """Create an array and print its length"""
> >>>
> >>> array = [1, 2, 3]
> >>> array.clear
> >>> print(len(array))
> >>> $ pylint -s n test.py
> >
why is it allowed in the first place?
I stared at list.clear and surrounding code a dozen times and said
"Looks right! Why isn't it clearing the list?!?!"
2 parens later and I'm golden!
No part of it is invalid, so nothing causes a problem. For instance,
you can write this:
On 2022-11-14, Greg Ewing wrote:
> On 14/11/22 1:31 pm, Jon Ribbens wrote:
>> On 2022-11-13, DFS wrote:
>>> But why is it allowed in the first place?
>>
>> Because it's an expression, and you're allowed to execute expressions.
>
> To put it a bit
On Mon, 14 Nov 2022 at 13:18, MRAB wrote:
>
> On 2022-11-14 00:55, Greg Ewing wrote:
> > On 14/11/22 1:31 pm, Jon Ribbens wrote:
> >> On 2022-11-13, DFS wrote:
> >>> But why is it allowed in the first place?
> >>
> >> Because it's
On 2022-11-14 00:55, Greg Ewing wrote:
On 14/11/22 1:31 pm, Jon Ribbens wrote:
On 2022-11-13, DFS wrote:
But why is it allowed in the first place?
Because it's an expression, and you're allowed to execute expressions.
To put it a bit more clearly, you're allowed to evaluat
On Mon, 14 Nov 2022 at 11:53, DFS wrote:
>
> On 11/13/2022 5:20 PM, Jon Ribbens wrote:
> > On 2022-11-13, DFS wrote:
> >> In code, list.clear is just ignored.
> >> At the terminal, list.clear shows
> >>
> >>
> >>
> >> in code:
> >> x = [1,2,3]
> >> x.clear
> >> print(len(x))
> >> 3
> >>
> >> at
On 14/11/22 1:31 pm, Jon Ribbens wrote:
On 2022-11-13, DFS wrote:
But why is it allowed in the first place?
Because it's an expression, and you're allowed to execute expressions.
To put it a bit more clearly, you're allowed to evaluate
an expression and ignore the r
>"""Create an array and print its length"""
>>
>>array = [1, 2, 3]
>>array.clear
>>print(len(array))
>>$ pylint -s n test.py
>>* Module test
>>test.py:4:0: W0104: Statement seems to have no effect
>> (pointless-statement)
>
>
> Thanks, I should use linters more often.
>
> But why is it allowed in the first place?
Because it's an expression, and you're allowed to execute expressions.
--
https://mail.python.org/mailman/listinfo/python-list
On 11/13/2022 5:20 PM, Jon Ribbens wrote:
On 2022-11-13, DFS wrote:
In code, list.clear is just ignored.
At the terminal, list.clear shows
in code:
x = [1,2,3]
x.clear
print(len(x))
3
at terminal:
x = [1,2,3]
x.clear
print(len(x))
3
Caused me an hour of frustration before I noticed list.
On 2022-11-13, DFS wrote:
> In code, list.clear is just ignored.
> At the terminal, list.clear shows
>
>
>
> in code:
> x = [1,2,3]
> x.clear
> print(len(x))
> 3
>
> at terminal:
> x = [1,2,3]
> x.clear
>
> print(len(x))
> 3
>
>
> Caused me an hour of frustration before I noticed list.clear() was
In code, list.clear is just ignored.
At the terminal, list.clear shows
in code:
x = [1,2,3]
x.clear
print(len(x))
3
at terminal:
x = [1,2,3]
x.clear
print(len(x))
3
Caused me an hour of frustration before I noticed list.clear() was what
I needed.
x = [1,2,3]
x.clear()
print(len(x))
0
--
On 9/20/22 09:36, asika wrote:
Sent from [1]Mail for Windows
References
Visible links
1. https://go.microsoft.com/fwlink/?LinkId=550986
dunno if you were trying to send screenshots or something, that doesn't
work here.
Try:
https://docs.python.org/3/libra
Sent from [1]Mail for Windows
References
Visible links
1. https://go.microsoft.com/fwlink/?LinkId=550986
--
https://mail.python.org/mailman/listinfo/python-list
py2 now, gotta fix that one
--
https://mail.python.org/mailman/listinfo/python-list
when the new version of XPN py2 newsreader src-tarball hits
alt.binaries, the world will hold it's breath.
major usability overhaul is ongoing.
release will be in style in usenet binary newsgroup.
full autoconfigure, no bs asked.
--
https://mail.python.org/mailman/listinfo/python-list
Stefan Behnel writes:
> https://docs.python.org/devguide/committing.html#what-s-new-and-news-entries
>
> https://github.com/larryhastings/blurb
Also of interest is the more general-use Town Crier tool:
towncrier is a utility to produce useful, summarised news files for
your project. Rat
Hartmut Goebel schrieb am 21.09.2017 um 10:59:
> I just discovered that CPython now uses Misc/NEWS.d/next to collect
> changes an there are a lot of Misc/NEWS/*.rst files for the respective
> released version. I'm investigating whether to adopt this for PyInstaller.
>
> What is the tooling for thi
On 21 September 2017 at 09:59, Hartmut Goebel
wrote:
> Hello,
>
> I just discovered that CPython now uses Misc/NEWS.d/next to collect
> changes an there are a lot of Misc/NEWS/*.rst files for the respective
> released version. I'm investigating whether to adopt this for PyInstaller.
>
> What is th
> I just discovered that CPython now uses Misc/NEWS.d/next to collect
> changes an there are a lot of Misc/NEWS/*.rst files for the respective
> released version. I'm investigating whether to adopt this for PyInstaller.
>
> What is the tooling for this? Is there some documentation, maybe a
> mailin
Hello,
I just discovered that CPython now uses Misc/NEWS.d/next to collect
changes an there are a lot of Misc/NEWS/*.rst files for the respective
released version. I'm investigating whether to adopt this for PyInstaller.
What is the tooling for this? Is there some documentation, maybe a
mailingsl
Hello,
I'm messing around with the embedded python and I can get parts to work. What
I'm having a hard time is getting my head around calling a function in the
python string and getting it's result.
Question, how do I load the python script and call runMe() and get it's valu
Receipt from websocket server audio raw and I want to encode ogg
help! :(
from websocket_server import WebsocketServer
# Called when a client sends a messagedef data_received(client, server, datos):
#HERE encoder "datos" to ogg and save data
PORT=9001
server = WebsocketServer(PORT)
server.s
you could do
worse than deposit him somewhere in the Western Australian desert.
It's kinda like sending him to hell, only the postage is cheaper.
ChrisA
--
https://mail.python.org/mailman/listinfo/python-list
Steven D'Aprano writes:
> The Aussie replies “Ah yes, I had a car like that once. American-made, is
> it?”
Is it true that in Australia, the number of the beast is 999?
--
https://mail.python.org/mailman/listinfo/python-list
Dennis Lee Bieber wrote:
> Well... when we've got states bigger than some countries...
A Texan farmer goes to Australia on vacation. There he meets an Aussie
farmer and gets to talking. They walk around the farm a little, and the
Aussie shows off his herd of cattle. The Texan immediately replie
===
A TOUCHY SUBJECT...
===
>
A WILY THRINAXODON SUED THE SMITHSONIAN FIVE HUNDRED DOLLARS FOR
SUPPRESSION OF FREEDOM OF EXPRESSION.
>
"This is a blow to evolutionism," SAID RICHARD DAWKINS.
>
ONE WHOM THRINAXODON HAS HAD SEVERAL *long* RUNNING FEUDS OVER
On Wed, May 29, 2013 at 2:53 AM, Peter Otten <__pete...@web.de> wrote:
> Chris Angelico wrote:
>
>> On Wed, May 29, 2013 at 2:19 AM, Peter Otten <__pete...@web.de> wrote:
>>> Solution: configure your editor to use four spaces for indentation.
>>
>> ITYM eight spaces.
>
> I meant: one hit of the Tab
Chris Angelico wrote:
> On Wed, May 29, 2013 at 2:19 AM, Peter Otten <__pete...@web.de> wrote:
>> Solution: configure your editor to use four spaces for indentation.
>
> ITYM eight spaces.
I meant: one hit of the Tab key should add spaces up to the next multiple of
four. Which implies
> But t
On Wed, May 29, 2013 at 2:19 AM, Peter Otten <__pete...@web.de> wrote:
> Solution: configure your editor to use four spaces for indentation.
ITYM eight spaces. But the real solution is to not mix tabs and
spaces. Stick to one or the other and you're safe.
ChrisA
--
http://mail.python.org/mailman
JackM wrote:
> Having a problem getting a py script to execute. Got this error:
>
> File "/scripts/blockIPv4.py", line 19
> ip = line.split(';')[0]
> ^
> IndentationError: expected an indented block
>
>
> I'm perplexed because the code that the error refers to *is* indented:
>
>
>
On Tue, 28 May 2013 11:32:06 -0400, JackM wrote:
> Having a problem getting a py script to execute. Got this error:
>
> File "/scripts/blockIPv4.py", line 19
> ip = line.split(';')[0]
> ^
> IndentationError: expected an indented block
>
>
> I'm perplexed because the code that the err
On 05/28/2013 09:32 AM, JackM wrote:
> Having a problem getting a py script to execute. Got this error:
>
> File "/scripts/blockIPv4.py", line 19
> ip = line.split(';')[0]
> ^
> IndentationError: expected an indented block
> I'm perplexed because the code that the error refers to *is* i
Having a problem getting a py script to execute. Got this error:
File "/scripts/blockIPv4.py", line 19
ip = line.split(';')[0]
^
IndentationError: expected an indented block
I'm perplexed because the code that the error refers to *is* indented:
with open('/var/www/html/mydomain.com/
On 26 March 2013 14:41, Arnaud Delobelle wrote:
> On 26 March 2013 10:07, Sven wrote:
> > Hello,
> >
> > Is there a way (ideally cross platform but a *nix OS solution would be
> > great) to process user input as they type?
> > What I aim to achieve is to count the number of characters a user has
On 26 March 2013 10:07, Sven wrote:
> Hello,
>
> Is there a way (ideally cross platform but a *nix OS solution would be
> great) to process user input as they type?
> What I aim to achieve is to count the number of characters a user has
> entered and display it while they are typing. The entered t
Hello,
Is there a way (ideally cross platform but a *nix OS solution would be
great) to process user input as they type?
What I aim to achieve is to count the number of characters a user has
entered and display it while they are typing. The entered text will also
need to be captured once the user
tring to a number. Can this be decoded
> > back? I gues that can also be decoded-converted back because its not losing
> > any information. Its encoding, not compressing.
>
> >
>
> > But it's the % modulo that breaks the forth/back association
( string ) ) can encode a string to a number. Can this be decoded
back? I gues that can also be decoded-converted back because its not losing any
information. Its encoding, not compressing.
But it's the % modulo that breaks the forth/back association.
So, the question is:
HOW to map both
n this be decoded
back? I gues that can also be decoded-converted back because its not losing any
information. Its encoding, not compressing.
But it's the % modulo that breaks the forth/back association.
So, the question is:
HOW to map both ways, in a one to one relation, (5-digit-intege
please don't feed the troll.
cu,
Kurt
--
http://mail.python.org/mailman/listinfo/python-list
Ferrous Cranus writes:
> pin = int( htmlpage.encode("hex"), 16 ) % 10
>
> Now i need the opposite procedure.
As already said several times by different persons in this thread, there
is no way you can get the original string that originated a particular
“pin”: the function you are using is “l
Now my website finally works as intended. Just visit the following links plz.
--
1. http://superhost.gr
2. http://superhost.gr/?show=log
3. http://i.imgur.com/89Eqmtf.png (this displays the database's column 'pin',
On Tue, Aug 14, 2012 at 10:07 PM, levi nie wrote:
> ok,what does "start, stop = 0, start" in the code mean?
> it's really strange.how does it work?
It's just parallel assignment
(http://en.wikipedia.org/wiki/Assignment_%28computer_science%29#Parallel_assignment
).
Even I got confused a bit:
explaination: this is called iterable unpacking
`start, stop = 0, start` is the same as:
temp = start
start = 0
stop = temp
On 15 August 2012 10:37, levi nie wrote:
> ok,what does "start, stop = 0, start" in the code mean?
> it's really str
ok,what does "start, stop = 0, start" in the code mean?
it's really strange.how does it work?
code:
def interval(start, stop=None, step=1):
'Imitates range() for step > 0'
if stop is None:
start, stop = 0, start
result = []
http://123maza.com/65/beauty147/
--
http://mail.python.org/mailman/listinfo/python-list
On Jun 23, 4:47 pm, "Thomas L. Shinnick"
wrote:
> There is also
> print(match_obj.string)
> which gives you a copy of the string searched. See end of section
> 6.2.5. Match Objects
I tried that, but the only time I wanted the string printed was when
there *wasn't* a match, so the match ob
ry to print it directly,
it's an empty string, I assume because it has been "consumed." How do
I prevent this?
It seems to work fine for this 2.x code:
import urllib.request
import re
next_nothing = '12345'
pc_url = 'http://www.pythonchallenge.com/pc/def/linkedlist.ph
On Jun 23, 3:47 pm, Ian Kelly wrote:
> On Thu, Jun 23, 2011 at 1:58 PM, John Salerno wrote:
> > After I've run the re.search function on a string and no match was
> > found, how can I access that string? When I try to print it directly,
> > it's an empty strin
On Thu, Jun 23, 2011 at 1:58 PM, John Salerno wrote:
> After I've run the re.search function on a string and no match was
> found, how can I access that string? When I try to print it directly,
> it's an empty string, I assume because it has been "consumed." How d
After I've run the re.search function on a string and no match was
found, how can I access that string? When I try to print it directly,
it's an empty string, I assume because it has been "consumed." How do
I prevent this?
It seems to work fine for this 2.x code:
import urll
Hi John,
John Nagle animats.com> writes:
> All attempts to make the dialect defined by CPython significantly
> faster have failed. PyPy did not achieve much of a speed
> improvement over CPython, and is sometimes slower.
This is not true. While PyPy is indeed sometimes slower than CPython
Stefan Behnel, 12.10.2010 09:18:
If you implemented an RPython to CPython extension compiler, [...]
BTW, if anyone wanted to do that, it might be a good idea to start with
Cython, adapt its type inference layer and add the few missing Python
language features (or pay the core developers to d
On 10/12/2010 05:18 PM, Nils Ruettershoff wrote:
Hi,
On 10/12/2010 07:41 AM, John Nagle wrote:
[...]
With Unladen Swallow looking like a failed IT project, a year
behind schedule and not delivering anything like the promised
performance, Google management may pull the plug on funding.
Since
Hi,
On 10/12/2010 07:41 AM, John Nagle wrote:
[...]
With Unladen Swallow looking like a failed IT project, a year
behind schedule and not delivering anything like the promised
performance, Google management may pull the plug on funding.
Since there hasn't been a "quarterly release" in a year
John Nagle, 11.10.2010 22:01:
It may be time to standardize "RPython".
There are at least three implementations of "RPython" variants - PyPy,
Shed Skin, and RPython for LLVM. The first two are up and running.
The thing is, while RPython can be seen as a general purpose programming
language,
John Nagle wrote:
> All the schemes to speed up Python as defined by CPython seem to hit
> a wall on speed improvement. Some of the numeric benchmarks go faster
> on implementations that don't box all numbers, but 2x seems to be about
> as good as it gets, even with a JIT compiler.
That has
On 10/11/2010 1:47 PM, Ryan Kelly wrote:
On Mon, 2010-10-11 at 13:01 -0700, John Nagle wrote:
It may be time to standardize "RPython".
There are at least three implementations of "RPython" variants - PyPy,
Shed Skin, and RPython for LLVM. The first two are up and running.
There's a theory
On Mon, 2010-10-11 at 13:01 -0700, John Nagle wrote:
> It may be time to standardize "RPython".
>
>There are at least three implementations of "RPython" variants - PyPy,
> Shed Skin, and RPython for LLVM. The first two are up and running.
> There's a theory paper on the subject:
>
> http://c
On 10/11/2010 1:01 PM, John Nagle wrote:
(Correct Shed Skin tutorial link)
> Shed Skin:
> http://shedskin.googlecode.com/files/shedskin-tutorial-0.3.html
--
http://mail.python.org/mailman/listinfo/python-list
On Mon, Oct 11, 2010 at 4:01 PM, John Nagle wrote:
> file:///C:/Users/nagle/AppData/Local/Temp/shedskin-tutorial-0.3.html
This gives me a 404. Your Web server is broken! Fix it! ;)
Temporarily mirrored: http://jedsmith.org/tmp/shedskin-tutorial-0.5.html
--
Jed Smith
j...@jedsmith.org
--
http
It may be time to standardize "RPython".
There are at least three implementations of "RPython" variants - PyPy,
Shed Skin, and RPython for LLVM. The first two are up and running.
There's a theory paper on the subject:
http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.142.1457&rep=rep
On Aug 12, 9:16 am, Aleksey wrote:
> On 12 авг, 18:49,drodrig wrote:
>
> > A python script I use to backup files on a Windows 2003 server
> > occasionally fails to retrieve the size of a file with a question mark
> > in the name. The exception I get is "OSError #123 The filename,
> > directory nam
On 12 авг, 18:49, drodrig wrote:
> A python script I use to backup files on a Windows 2003 server
> occasionally fails to retrieve the size of a file with a question mark
> in the name. The exception I get is "OSError #123 The filename,
> directory name, or volume label syntax is incorrect". I rea
get a question mark into a file name; even using the
file namespace prefix \\?\ doesn't allow it as far as I can tell.
Where are you seeing the question mark? Is it possible it's a
placeholder for an unprintable character rather than an actual
question mark?
TJG
--
http://mail.python.org/mailman/listinfo/python-list
on mark in the name of a file on Windows is
illegal, but nevertheless these files exist on the file system. It
seems that they are created by Office 2007 Word, for the most part.
The line that fails is:
os.path.getsize(source)
Where source is the full path to the file with the question mark in
http://www.google.com/url?sa=D&q=http://osamah2000.jeeran.com/daauageralmuslmeen1.htm&usg=AFQjCNGQhhGz-1TGv9Y7gE8zKwHHustJCg
--
http://mail.python.org/mailman/listinfo/python-list
http://www.google.com/url?sa=D&q=http://osamah2000.jeeran.com/daauageralmuslmeen1.htm&usg=AFQjCNGQhhGz-1TGv9Y7gE8zKwHHustJCg
--
http://mail.python.org/mailman/listinfo/python-list
http://www.google.com/url?sa=D&q=http://www.google.com/url%3Fsa%3DD%26q%3Dhttp://osamah2000.jeeran.com/daauageralmuslmeen1.htm%26usg%3DAFQjCNGQhhGz-1TGv9Y7gE8zKwHHustJCg&usg=AFQjCNH5ZzXRqkh5EGL1dsjQxcjNQCmAEQ
--
http://mail.python.org/mailman/listinfo/python-list
On Fri, Mar 19, 2010 at 4:05 AM, nbv4 wrote:
> I have ipython installed via apt. I can go to the command line and
> type 'ipython' and it will work. If I try to install ipython to a
> virtualenv, I get this:
>
> $ pip install -E env/ ipython
> Requirement already satisfied: ipython in /usr/share/p
I have ipython installed via apt. I can go to the command line and
type 'ipython' and it will work. If I try to install ipython to a
virtualenv, I get this:
$ pip install -E env/ ipython
Requirement already satisfied: ipython in /usr/share/pyshared
Installing collected packages: ipython
Successful
I'm Chinese, I'm working in a famous vendor company which let employee
do a lot of OT work, 2 more hours per day, and sometime work in weekend.
Is that the same in USA and European?
--
http://mail.python.org/mailman/listinfo/python-list
En Fri, 13 Nov 2009 20:27:29 -0300, Zac Burns escribió:
I've overloaded __import__ to modify modules after they are
imported... but running dir(module) on the result only returns
__builtins__, __doc__, __file__,
__name__, __package__, and __path__.
Why is this? More importantly, where can I ho
Zac Burns wrote:
I've overloaded __import__ to modify modules after they are
imported... but running dir(module) on the result only returns
__builtins__, __doc__, __file__,
__name__, __package__, and __path__.
Why is this? More importantly, where can I hook in that would allow me
to see the co
I've overloaded __import__ to modify modules after they are
imported... but running dir(module) on the result only returns
__builtins__, __doc__, __file__,
__name__, __package__, and __path__.
Why is this? More importantly, where can I hook in that would allow me
to see the contents of the module?
So, I'm playing around with Python (running 2.6 and
3.1 versions of IDLE). After I shut everything down
and close the windows, I notice the Task Manager's
activity light is still glowing.
In looking at the Process window I see this:
Image...User Name CPU Memory(... Description
pythonw.exe me
On Fri, Jul 10, 2009 at 8:18 AM, slamdunk wrote:
> is there a way for a function to understand whether it's being run
> through a OnCreate callback or not?
> I have working functions that I want to recycle through the OnCreate
> but need to catch the "nuke.thisNode()"
1 - 100 of 320 matches
Mail list logo