, if in a format, the
default formatting all the way down. Is there a good reason it's repr?
Ross
From: Python-list [python-list-bounces+ross.boylan=ucsf@python.org] on
behalf of Chris Angelico [ros...@gmail.com]
Sent: Thursday, November 17, 2016 3:
viceable for me, but it requires violating the intended
semantics of repr, namely that the result could be converted back to the
original object. I'm trying to get a display that has only some of the
information in the object. My understanding is that str is supposed to provide
that.
At any rate
ts" [1] which were a key/value data
structure, usually called an "alist" or "a-list".
Ross
[0] https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node108.html
[1] https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node153.html
On 12/5/2561 BE 13:45, Bob Martin wrote:
in 793617
I had a paddle through the manual at
https://www.gnuradio.org/doc/doxygen/page_python_blocks.html and apparently
some DSP operations use numpy.
Ross
On Wed, 1 Aug 2018 at 11:56 wrote:
>
>
> After some research I found out that "sudo apt-get install python-numpy"
> solve
I’ve begun a new book called Meta Python that I’m looking for assistance with.
The book is one I wish was out there, and so am writing. The book is targeted
at experienced programmers who are novice Python users and want to move from
that point to one where they have published to PyPI.
I’m spec
gt; On Tuesday 09 August 2016 11:52, Charles Ross wrote:
>
>> I’ve begun a new book called Meta Python that I’m looking for assistance
>> with.
>
> Are you looking for people to be co-authors? Are you offering payment, or
> credit? A free copy of the book? A kick to t
matplotlib at
https://github.com/python-windrose/windrose . The matplotlib page of
third-party libraries is at
https://matplotlib.org/3.1.1/thirdpartypackages/index.html#windrose .
Ross
--
https://mail.python.org/mailman/listinfo/python-list
cryptography and signature support?
IMAP is in many ways better than POP3, but you would be surprised at the
weight of an accepted standard I think.
--
Ross Bamford - [EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
phishing attempt.
>
> Any underage drinker in a college town can tell you a hundred ways to
> get sufficient fake ID to get around that.
>
> See also: http://www.ahbl.org/funny/response1.php
>
> I'll let others here fill in the blanks.
:) :) :)
--
Ross Bamford - [EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
Hi -
I wonder if someone might be able to lend a quick
answer to this.
I have a python script that I normally run from the
command line on Solaris.
i.e. %pythonscript
>
I decided to try IDLE on Windows to do some
debugging with the debugger (which I
unfortunately dont' have o
HI -
Sorry for maybe a too simple a question but I googled and also checked my
reference O'Reilly Learning Python
book and I did not find a satisfactory answer.
When I use readlines, what happens if the number of lines is huge?I have
a very big file (4GB) I want to
read in, but I'm sure ther
s when the file begin read is too big for all lines
tobe?read with "readlines()"
> Ross Reyes <[EMAIL PROTECTED]> wrote:
>> Sorry for maybe a too simple a question but I googled and also
>> checked my reference O'Reilly Learning Python book and I did not
>&
"BJörn Lindqvist" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Thank you for your replies. But they don't deal with my original
question. :) I have read the thousands of posts all saying "self is
good" and they are right. But this time I want to be different m-kay?
I figure that ther
he last iteration. On the other hand, if the loop is terminated
early using the 'break' statement, the 'else' clause is skipped."
Ross
--
http://mail.python.org/mailman/listinfo/python-list
> I want to connect to unix machine using ssh to run some commands .
>
I have not tried this, but it might be useful.
http://www.lag.net/paramiko/
HTH,
Ross
--
http://mail.python.org/mailman/listinfo/python-list
is empty?
Better to show a more complete example with output and how that
is not what you expect.
Ross
--
http://mail.python.org/mailman/listinfo/python-list
"Neal D. Becker" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I am converting optimization code from legacy C to python. Generators are
a
> HUGE convenience, because the original code structures have the optimizer
> as the main code calling your function, while I want to invert t
"Darren Dale" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I'm stuck. I'm trying to make this:
>
> file://C:%5Cfolder1%5Cfolder2%5Cmydoc1.pdf,file://C
> %5Cfolderx%5Cfoldery%5Cmydoc2.pdf
>
> (no linebreaks) look like this:
>
> ./mydoc1.pdf,./mydoc2.pdf
>
> my regular expression abi
"Steven Bethard" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
[snip]
> For this reason, I usually suggest declaring properties like[1]:
>
> py> class E(object):
> ... def x():
> ... def get(self):
> ... return float(self._x)
> ... def set(self, x):
> .
could
highlight some of the features that make it suitable for RAD. Like the use
of dinamic binding.
Your healp would be appreciated.
Hope to hear from you soon.
Ross
--
http://mail.python.org/mailman/listinfo/python-list
I found something like this in a StackOverflow discussion.
>>> def paradox():
... try:
... raise Exception("Exception raised during try")
... except:
... print "Except after try"
... return True
... finally:
... print "Finally"
...
have with 64 bit Python running on
64 bit linux.
Is that true?I have spent a couple of hours searching for a definitive
description of the difference between the 32 and 64 bit versions of Python
for Windows and haven't found anything.
Thanks
Ross
--
https://mail.python.org/mailman/listinfo/python-list
sub(r"([\\\"])", "\1", 'Silly " quote')
'Silly \\\x01 quote'
>>> re.sub(r"([\\\"])", "\\1", 'Silly " quote')
'Silly \\" quote'
Or perhaps I'm confused about what the displayed results mean. If a
string has a literal \, does it get shown as \\?
I'd appreciate it if you cc me on the reply.
Thanks.
Ross Boylan
--
http://mail.python.org/mailman/listinfo/python-list
On Wed, 2011-10-26 at 12:48 -0700, Ross Boylan wrote:
> I want to replace every \ and " (the two characters for backslash and
> double quotes) with a \ and the same character, i.e.,
> \ -> \\
> " -> \"
I'd like to thank Ian, Dave, MRAB, and John for their he
On Thu, 21 Feb 2013 22:22:15 +0100, Ferrous Cranus
wrote:
Τη Πέμπτη, 21 Φεβρουαρίου 2013 10:14:13 μ.μ. UTC+2, ο χρήστης MRAB
έγραψε:
On 2013-02-21 19:38, Ferrous Cranus wrote:
> import datetime from datetime
Should be:
from datetime import datetime
>
> try:
> datetime.strpt
On Fri, 22 Feb 2013 00:08:01 +0100, Ferrous Cranus
wrote:
Τη Παρασκευή, 22 Φεβρουαρίου 2013 12:03:59 π.μ. UTC+2, ο χρήστης Michael
Ross έγραψε:
On Thu, 21 Feb 2013 22:22:15 +0100, Ferrous Cranus
wrote:
> Τη Πέμπτη, 21 Φεβρουαρίου 2013 10:14:13 μ.μ. UTC+2, ο χρήστης MRAB
>
On Fri, 22 Feb 2013 01:12:40 +0100, Ferrous Cranus
wrote:
Please i have been trying hours for this:
Don't do that: Spending hours on being stuck. Take a break. Call it a
night.
Brain needs time to unstick itself.
Besides:
from datetime import date
entry='31 03 2013'
day, month,
On Sun, 24 Feb 2013 20:40:05 +0100, wrote:
> if (some statement): # short form
>
> rather than
>
> if (some statement == true): # long form
What all those ugly brackets are for?
Mark,
Back in the day when C was king, or take many newer long established
languages (C#,
ython normally
doesn't change this. Only the Python process's own internal buffers are
flushed, the OS doesn't change its handling of its buffers. If you want
written data to be fully committed before exiting you need to use other
OS services that guarantee this.
on
environment would seem to be the obvious solution.
Ross Ridge
--
l/ // Ross Ridge -- The Great HTMU
[oo][oo] rri...@csclub.uwaterloo.ca
-()-/()/ http://www.csclub.uwaterloo.ca/~rridge/
db //
--
http://mail.python.org/mailman/listinfo/python-list
On Tue, 05 Mar 2013 21:04:59 +0100, Νίκος Γκρ33κ
wrote:
#open html template
if htmlpage.endswith('.html'):
f = open( "/home/nikos/public_html/" + htmlpage )
htmldata = f.read()
counter = ''' mailto:supp...@superhost.gr";> src="/data/images/ma
On Tue, 05 Mar 2013 23:47:18 +0100, Νίκος Γκρ33κ
wrote:
Thank you very much! This is what i was looking for and here is my code
after receiving your help.
So, with the command you provided to me i can actually run the .py
script ans save its output and then append from there!! Great!
Her
On Wed, 06 Mar 2013 00:39:31 +0100, Νίκος Γκρ33κ
wrote:
htmldata = subprocess.check_output( '/home/nikos/public_html/cgi-bin/' +
htmlpage )
htmldata = subprocess.check_output( ['/usr/bin/python',
'/home/nikos/public_html/cgi-bin/' + htmlpage] )
Both of the above statemnts fail i'am afr
On Wed, 06 Mar 2013 12:52:00 +0100, Mark Lawrence
wrote:
On 06/03/2013 07:45, Νίκος Γκρ33κ wrote:
I'am using this snipper to read a current directory and insert all
filenames into a databse and then display them.
But what happens when files are get removed form the directory?
The inserted
On Thu, 07 Mar 2013 00:18:44 +0100, Νίκος Γκρ33κ
wrote:
Τη Τετάρτη, 6 Μαρτίου 2013 2:06:33 π.μ. UTC+2, ο χρήστης Michael Ross
έγραψε:
check_output is available as of Python 2.7
I guess you are still on version 2.6 ?
I can access each of these from my jailed shell user account without
On Thu, 07 Mar 2013 02:28:10 +0100, Chris Kaynor
wrote:
I actually just tried that, and the results weren't very good.
Using the doc's search feature, the "Reporting Bugs" (and the "About
these documents") page >was significantly down the page (about 2/3 of
the way) - not the most obviou
On Thu, 07 Mar 2013 12:27:03 +0100, Νίκος Γκρ33κ
wrote:
Τη Πέμπτη, 7 Μαρτίου 2013 11:06:27 π.μ. UTC+2, ο χρήστης Νίκος Γκρ33κ
έγραψε:
Any ideas about the error please?
I can assure you all the statemnt are correct ebcause they work in
python v2.6.6
can someone help this issue so my w
On Thu, 07 Mar 2013 13:25:58 +0100, Νίκος Γκρ33κ
wrote:
Τη Πέμπτη, 7 Μαρτίου 2013 1:51:42 μ.μ. UTC+2, ο χρήστης Michael Ross
έγραψε:
On Thu, 07 Mar 2013 12:27:03 +0100, Νίκος Γκρ33κ
wrote:
> Τη Πέμπτη, 7 Μαρτίου 2013 11:06:27 π.μ. UTC+2, ο χρήστης Νίκος Γκρ33κ
> έγραψε:
>&g
On Mon, 18 Mar 2013 16:50:21 +0100, Steven D'Aprano
wrote:
On Mon, 18 Mar 2013 08:28:46 -0700, Ana Dionísio wrote:
Is there some way to go around this limit? I need to import data from
python to excel and I need 1440 columns for that.
That's an Excel question, it has nothing to do with Py
On Tue, 19 Mar 2013 15:07:54 +0100, Neil Cerutti wrote:
On 2013-03-18, Ana Dion?sio wrote:
But I still get the error and I use Excel 2010.
I'm trying to export data in a list to Excel
xlrd: Library for developers to extract data from Microsoft Excel
(tm).
It is for *reading* Excel files,
David G. Wonnacott wrote:
> Couldn't we easily get an n*log(n) shuffle...
Why are you trying to get an O(n*log(n)) shuffle when an O(n) shuffle
algorithim is well known and implemented in Python as random.shuffle()?
Ross Ridge
--
http://mail.python.org/mailman/
This might be more flexible:
pat = re.compile(r"^(a*(?=b)b*(?=[ac])c*(?=[abd])d*)+$")
tests = [('aabbbaabbcccbbbcccddd', True),
('aabcabcd', True),
('abcd', True),
('aabbccaabbccabcabababbb', True),
('aabbccaabbccabcabababbbabcd', True),
you're using. You'll
need to use an older version of the Platform SDK that supports your
compiler.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
.
The cost of mantaining cache coherency for a locked increment
instruction should be no different than that of an unlocked increment
instruction.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
s is the same whether the increment
instruction is locked or not.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
at doesn't really make sense. The object can't be deleted because
the thread should already have a reference (directly or indirectly) to
the object, otherwise any access to it can cause the race condition you
describe.
Ross Ridge
--
http://mail.python.
Ross Ridge wrote:
> That doesn't really make sense. The object can't be deleted because
> the thread should already have a reference (directly or indirectly) to
> the object, otherwise any access to it can cause the race condition you
> describe.
Joe Seigh wrote:
> True
ce counting isn't thread
safe.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
Martin v. Löwis wrote:
> How would you propose to fix file_repr to prevent such
> a race condition?
Ross Ridge schrieb:
> The race condition you describe is different from the one Joe Seigh
> described. It's caused because without GIL access to the file object
> is no lon
Ross Ridge schrieb:
> So give an example where reference counting is unsafe.
Martin v. Löwis wrote:
> Nobody claimed that, in that thread. Instead, the claim was
> "Atomic increment and decrement instructions are not by themselves
> sufficient to make reference counting safe.&quo
d saw here an example of someone using IronPython:
IronPython won't work on the XBox 360.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
proc.addParameter(param, value)
proc.transform()
return proc.output
print "Content-Type: text/html\n\n"
print buildPage()
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
e using ASP.NET, so your ASP code
probably is probably using the .NET XML implementation instead of
MSXML. In that case, another alternative might be to use IronPython
and just translate your ASP script into Python.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
pothetical) dot, parenthesises and a name lookup.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
y install themselves somewhere that's
normally in the path already. I suppose you can do the same thing on
Windows if you want, just choose to install Python into directory
that's already in your path. Though installing to something like
C:\WINDOWS\SYSTEM32 is probably not a good idea.
Martin v. Löwis wrote:
> In general, the only Microsoft-supported strategy is that you
> must use only a single msvcrt in the entire application. So
> either recompile PostGres, or recompile Python.
If you want a compiled version of Python that already uses
MSVCRT then you try using pyMingGW:
Thomas Dickey wrote:
> ...and send UTF-8 text, keeping track of where you really are on the screen.
You make that sound so easy.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
Ian Ward wrote:
> I'll have to deal with that anyway, since I'm doing all my own wrapping,
> justification and clipping of text.
In general it's impossible to know how many display positions some
random Unicode character might use. For example, Chinese characters
normally take two display positio
copyright, just the hints in most
outline fonts, which are considered computer programs.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
econd a commentary of that play, and someone
copied only the first part, they'd be doing nothing illegal.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
mrstephengross wrote:
> I'm working on building python 2.4.2 with the mingw compiler (on
> cygwin).
Try following the instructions on the pyMinGW site:
http://jove.prohosting.com/iwave/ipython/pyMinGW.html
Ross Ridge
--
http://mail
Steve Holden wrote:
> "Wider than UTF-16" doesn't make sense.
It makes perfect sense.
Ross
Ridge
--
http://mail.python.org/mailman/listinfo/python-list
Steve Holden wrote:
>"Wider than UTF-16" doesn't make sense.
Ross Ridge wrote"
> It makes perfect sense.
Alan Kennedy wrote:
> UTF-16 is a "Unicode Transcription Format", meaning that it is a
> mechanism for representing all unicode code points, even th
Xavier Morel wrote:
> Not if you're still within Unicode / Universal Character Set code space.
Akihiro Kayama in his original post made it clear that he wanted to use
a character set larger than entire Unicode code space.
Ross Ridge
Ross Ridge wrote:
> Akihiro Kayama in his original post made it clear that he wanted to use
> a character set larger than entire Unicode code space.
Xavier Morel wrote:
> He implies that ...
He explictly said that character set he wanted to use wouldn't fit in
UTF-16.
>... but
talking the entire
>language, keywords and all.
This would be more convincing if it came from someone who spoke Mandarin,
Japanese, Hindi or Korean.
btw. Mandarin is a spoken dialect Chinese, what you're actually asking
for is a Simplified-Chinese version of Python.
each with their own set of third-party modules and little
code sharing between the two groups. I don't think this would be good
for Python as whole.
Ross Ridge
--
l/ // Ross Ridge -- The Great HTMU
[oo][oo] [EMAIL PROTECTED]
-()-/()/ http://ww
Ross Ridge wrote:
> Translating keywords and standard identifiers into Chinese could make
> learning Python even more difficult. It would probably make things
> easier for new programmers, but I don't know if serious programmers would
> actually prefer programming using Chin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512
Say I've got a file called 'testfile' that contains the following three
lines:
foo
bar
baz
And a script that goes like this:
#!/usr/bin/env python
import random
import sys
import linecache
rnd = random.randint(1,3)
line = linecache.getline('test
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512
Sebastian Wiesner wrote:
> Then you will see, that getline returns the line *including the newline
> character*, while raw_input does not. Use line.strip('\n') to remove
> trailing newline characters from the return value of getline.
Ah, thank yo
ion (ie. VisualBasic
6 compatable) way implementing iteratable objects.
Ross Ridge
--
l/ // Ross Ridge -- The Great HTMU
[oo][oo] [EMAIL PROTECTED]
-()-/()/ http://www.csclub.uwaterloo.ca/~rridge/
db //
--
http://mail.python.org/mailman/listinfo/python-list
#x27;re falsely assuming that any code that doesn't support surrogates
is broken. Supporting surrogates is no more required than supporting
combining characters, right-to-left languages or lower case letters.
Ross Ridge
--
l/ // Ross Ridge -
ogates, or
any other kind of character, so no you wouldn't be lying.
Also since few Python programs claim to support Unicode, why do you
think it's acceptable to break them if they don't support surrogates?
Ross Ridge
--
l/ // Ross Ridge -- T
Ross Ridge writes:
> The Unicode standard doesn't require that you support surrogates, or
> any other kind of character, so no you wouldn't be lying.
<[EMAIL PROTECTED]> wrote:
> There is the notion of Unicode implementation levels, and each of them
> does include a
t;, "credits" or "license" for more information.
>>> quit
Use quit() or Ctrl-D (i.e. EOF) to exit
>>>
[1]+ Stopped python
~$
Apparently though the Cygwin version of Python now prints the correct
message for q
value in either Python long or a Python
int, if it's big enough. What it's doing now, returning unsigned value in
a Python int, even when it's not big enough to hold the result, is wrong.
Ross Ridge
--
l/ // Ross Ridge -- The Great HTMU
yways, it may not be worth the trouble
of trying to get Python to use 32-bit floats.
(You might also want to consider whether you want to using single
precision in your C code to begin with, on IA-32 CPUs it seldom makes
a difference in performance.)
Ross
parent would get each logged event right away. However,
logging.getLogger("a").error("test")
produces only a single log message indicating an associated object of "a".
The docs lead me to expect that I'd see one message from "a" and
another from root.
re supported
by third party utilities. Your PEP gives very little thought to how
the change would affect the standard Python library. Are non-ASCII
identifiers going to be poorly supported in Python's own library and
utilities?
Ross Ridge
--
<[EMAIL PROTECTED]> wrote:
>So, please provide feedback, e.g. perhaps by answering these
>questions:
>- should non-ASCII identifiers be supported? why?
Ross Ridge wrote:
> I think the biggest argument against this PEP is how little similar
> features are used in other lan
>And then I dare to guess that much of that code is not open source.
Lots of non-open source code makes it on to the Internet in the form of
code snippets. You don't have to guess what closed-source are actually
doing either.
Ross Ridge
--
l/ //
Ross Ridge schrieb:
> non-ASCII identifiers. While it's easy to find code where comments use
> non-ASCII characters, I was never able to find a non-made up example
> that used them in identifiers.
Gregor Horvath <[EMAIL PROTECTED]> wrote:
>If comments are allowed to be
ight and what
they did wrong. You don't have to speculate.
Ross Ridge
--
l/ // Ross Ridge -- The Great HTMU
[oo][oo] [EMAIL PROTECTED]
-()-/()/ http://www.csclub.uwaterloo.ca/~rridge/
db //
--
http://mail.python.org/mailman/listinfo/python-list
First two appologies, this is probably not a Python question, more
SOAP. And second, there is every possibilty I am terminally confused
having looked at this for two days now.
What I want is to create a Python SOAP server. I am using the sample
which comes with ZSI, namely the Echo.wsdl and assoc
alls on Python's file class will be dispatched to C code in
the Python interpreter and so will use the C runtime that Python was
linked with.
Ross Ridge
--
l/ // Ross Ridge -- The Great HTMU
[oo][oo] [EMAIL PROTECTED]
-()-/()/ http://www.csclub.uw
;r")
os.close(f.fileno)
f.close()
Normally however, you can expect file method close() to fail for all
the same reasons you would expect write() to fail.
Ross Ridge
--
l/ // Ross Ridge -- The Great HTMU
[oo][oo] [EMAIL
riptors, so the
C runtime emulates them.
Ross Ridge
--
l/ // Ross Ridge -- The Great HTMU
[oo][oo] [EMAIL PROTECTED]
-()-/()/ http://www.csclub.uwaterloo.ca/~rridge/
db //
--
http://mail.python.org/mailman/listinfo/python-list
more easily understood and maintainable than the second
example.
Ross Ridge
--
l/ // Ross Ridge -- The Great HTMU
[oo][oo] [EMAIL PROTECTED]
-()-/()/ http://www.csclub.uwaterloo.ca/~rridge/
db //
--
http://mail.python.org/mailman/listinfo/python-list
['string1', 'string2',
> 'string3']]
>
> Any help would be appreciated.
>
> Thanks
> Francesco
>
l = [l, l]
Ross
--
http://mail.python.org/mailman/listinfo/python-list
uch more Pythonic and plays nicely
with others in the Python world such as Paste, WSGI, etc..
If you're interested in trying out Zope 3, check out grok
(http://grok.zope.org/). Grok does the job of making the Zope 3
learning curve as gradual as Python such that you only need to learn
enough to do what you're trying to do at the moment.
Ross
--
http://mail.python.org/mailman/listinfo/python-list
all the trunks in a repository and keeps them up to
date with the repository as new trunks are added when the previous
externals are provided thereafter.
http://cheeseshop.python.org/pypi/z3c.repoexternals
Ross
--
http://mail.python.org/mailman/listinfo/python-list
s to explain to me how to choose base address and
offset values, that would be cool.
Ross
--
http://mail.python.org/mailman/listinfo/python-list
odule to check
to see if the file a ZIP file, if it has a member named "mimetype" and
if the contents of the file match one of the OpenOffice MIME types.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
odule to check
to see if the file a ZIP file, if it has a member named "mimetype" and
if the contents of the file match one of the OpenOffice MIME types.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
better off using Postscript, Ghostscript
specifically, since PDF is essentially Postscript with a special
dictionary of commands.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
Ross Ridge wrote:
> So identifying PDF files is pretty easy.
Steven D'Aprano wrote:
> Sure. MIS-identifying PDF files is pretty easy. Identifying them is not.
> Consider this example:
Your contrived example doesn't show how a PDF file would be
misidentified, it only shows how
swapped into memory and stay in memory
until they need to be swapped out to make room for something else. If
you don't want this behaviour, don't use mmap.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
obably acceptable. Assuming
he's not trying to write his own synthesizer, he might just be able to
write his application in Python under Mac OS X.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
get around this?
Don't mix Cygwin tools and native Windows tools. Either use the Cygwin
version of Python or don't use Cygwin bash.
Ross Ridge
--
http://mail.python.org/mailman/listinfo/python-list
r case is presumably different somehow, so you'll have to update and
fix this completely untested code if you want to use it.
Ross Ridge
--
l/ // Ross Ridge -- The Great HTMU
[oo][oo] [EMAIL PROTECTED]
-()-/()/ http://www.csclub.uwaterloo.ca/~rridge/
db //
--
http://mail.python.org/mailman/listinfo/python-list
101 - 200 of 383 matches
Mail list logo