if there is a "legal" way to do this, but I would appreciate some
guidance.
Thanks,
Brett
--
http://mail.python.org/mailman/listinfo/python-list
I think so. I later reference it as textfilelist[0][0]. My intent is to be
able to use: titlelist1[x][1] as part of my "if" statement in my function.
-Brett
"James Stroud" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> Do you really want qu
I'm trying to read and write from /dev/mem on a linux system using the
mmap module. When I run this minimal example:
---
import os, mmap
MAP_MASK = mmap.PAGESIZE - 1
addr = 0x48088024
f = os.open("/dev/mem", os.O_RDWR | os.O_SYNC)
m = mmap.mmap(f, mmap.PAGESIZE, mmap.
On Oct 21, 8:02 am, Carl Banks wrote:
> On Oct 20, 5:03 pm, Brett wrote:
>
>
>
> > I'm trying to read and write from /dev/mem on a linux system using the
> > mmap module. When I run this minimal example:
> > ---
> > import os
Hi,
I recently ran into this behavior:
>>> import sys
>>> import apkg.subpkg
>>> del sys.modules['apkg']
>>> import apkg.subpkg as subpkg
Traceback (most recent call last):
File "", line 1, in
AttributeError: 'module' object has no attribute 'subpkg'
where 'apkg' and 'subpkg' comprise empty _
On Monday, August 22, 2011 12:06:44 PM UTC-7, Stephen Hansen wrote:
> On 8/22/11 11:51 AM, Matthew Brett wrote:
> > Hi,
> >
> > I recently ran into this behavior:
> >
> >>>> import sys
> >>>> import apkg.subpkg
> >>>> d
On Friday, January 13, 2017 at 1:07:40 PM UTC-5, Brett Salyer wrote:
> Hey all,
>
> I was debating on getting some RGB light strips for my room. I noticed, from
> this tutorial:
>
> http://popoklopsi.github.io/RaspberryPi-LedStrip/#!/ws2812
>
>
> there is a WS28
n app, the interpreter will check first if the
> app-specific
> site-packages folder is empty, if not, install the wheels. This provides
> package-
> freezing ability. The only downside is longer first-run time.
>
Install the wheels where? You can't do that globally. And you also h
RHEL isn't really "big" on Distrowatch because Distrowatch is geared
more towards users.
RHEL 4.1 is using Python 2.3.4 now, btw.
--
http://mail.python.org/mailman/listinfo/python-list
You get to spend all day in ipython?
Can I have your job?
--
http://mail.python.org/mailman/listinfo/python-list
I don't have experience with scipting this... but I know that
resolution for example is stored in registry, and _that_ is what is
loaded when you boot.
I think most, if not all, of your changes will be found in the registry
(for permenance).
Also, have you checked out PyWin32? It's just a big pr
I guess it is referring to the closely related (maybe even same dev
group? I don't know why the wxWindows docs would mention Python unless
they specifically support the wxPython project, too.)
"wxWindows + Python = wxPython
wxPython is a Python extension module that provides a set of bindings
fro
I'm not sure what you mean, really, do you need an official Python
"Null" value? Try None?
In [6]: myCells = ['Mary', 'Bob', None, 'Joe']
In [7]: for cell in myCells:
...: if cell:
...: print cell
...: else:
...: print "NULL VALUE"
...:
Mary
Bob
NULL VALUE
J
(sorted is a built-in function in 2.4)
def myFunction( data ):
""" Take one of your set of 3, grab [2] (the 3rd) and do calcs,
return value """
"do some math calculations to data[2]"
return "result of calculations"
sorted_list = sorted(myList, key=myFunction)
List is sorted in the or
You can use Python regardless of the docs... of course. Not sure what
you mean there.
As far as setting an Environment Variable, though:
(1) Right-Click My Computer, go to Properties
(2) Go to the Advanced tab
(3) Click Environment Variables (bottom middle-ish)
(4) Under "User Variables" clic
That's because the Python docs come zipped up within a folder, for
example:
python_docs.tar.bz2 has a folder inside it called Python-Docs-2.4.2.
You need to have C:\Python24\Python-Docs-2.4.2\ as the value if thats
where that folder is, or wherever you unzipped it. I, personally, just
took all t
> Alternatively, does anyone have experience
> of using the visual studio files in the PCBuild
> directory under amd64?
I don't have an answer for you, but just to clarity for future
readers... based on the quote above, I assume you mean a native 64-bit
build for Windows, right? You never stated
As an aside to this, are there any freely available C compilers for
Windows that can compile 64-bit binaries? I find nothing for Cygwin or
MinGW...
--
http://mail.python.org/mailman/listinfo/python-list
SDK...? Seems counter-intuitive
if so, but it does mention you can build 32 and 64-bit apps with it, I
just assumed they would be uh, for Windows Server.
Thanks again,
Brett
--
http://mail.python.org/mailman/listinfo/python-list
I don't think this is possible, unless I am grossly misunderstanding.
For the web, pretty much every "UI" is build with some variation of
HTML (XHTML is the new standard) with JavaScript thrown in for fancy
GUI-like interfaces.
You can't use OS-native widgets in the web browser, no.
--
http://m
earch "IronPython" on
microsoft.com
Brett
--
http://mail.python.org/mailman/listinfo/python-list
> I've been asked by my boss to put an Icon in WinXP's "My Computer" for
> a utility we use around the shop. My tool of choice is of course
> Python and therefore what I am using to attempt my given task. I have
> no trouble putting Icons in the WinXP Toolbar using Python, but have
> totally fail
Would PythonEggs be close?
It's basically a zip format with all the Python files inside, it would
maintain the structure and not be a single script file, but would be a
single .egg file... the end user would just run the script and all
would be installed, essentially.
http://peak.telecommunity.co
> I have written some functions in a file called btools.py. I would like
> to import them automatically when I start up Python shell. Today I must
> do it by hand like this
>
> >>> from btools import *
> >>> dir()
> ['__builtins__', '__doc__', '__name__', 'func1', 'func2', 'func3']
> >>>
>
> Is the
Manuel11g wrote:
> Hello,
> I am a new programmer in Python and a need some help. Where can i get a
> basic tutorial about Class. I don't know nothing about Object Oriented
> Programming. Can you help me?
http://diveintopython.org/object_oriented_framework/index.html
--
http://mail.python.org/ma
I have to add another vote for Gentoo. I agree that you just "have
less problems" on Gentoo. Updates are from source, but you don't have
to update mid-day while working on a project... if you really want the
new version of KDE (etc) then start an update and go to sleep, not a
big deal. Portage (
Efrain Marrero wrote:
> i want to now how to do this in python
> this is java
>
>
> for(int i=1 ; i<=lim ; i++){
>
> for(int j=i+1; j<=lim+1; j++){
>
> for(int k =j+1; k<=lim+2;k++){
>
> for(int l=k+1 ; l<=lim+3;l++){
>
>
olved and join
`python-dev`_!
This is the fifty-first summary written by Brett Cannon (I *will* be caught up
on summaries soon).
To contact me, please send email to brett at python.org ; I do not have the
time to keep up on comp.lang.python and thus do not always catch follow-ups
posted there.
, so don't hesitate to take a stance on
something. And if all of this really interests you then get involved and join
`python-dev`_!
This is the fifty-third summary written by Brett Cannon (Another quarter
begins).
To contact me, please send email to brett at python.org ; I do not have the
n get involved and join
`python-dev`_!
This is the fifty-fourth summary written by Brett Cannon (amazed no one has
complained about the lateness of these summaries!).
To contact me, please send email to brett at python.org ; I do not have the
time to keep up on comp.lang.python and thus do not always
n get involved and join
`python-dev`_!
This is the fifty-fifth summary written by Brett Cannon (I have been doing this
for too long...).
To contact me, please send email to brett at python.org ; I do not have the
time to keep up on comp.lang.python and thus do not always catch follow-ups
posted there.
k of now is using Putty to SSH into a
machine, no beeps there, and I can resize... but I don't have a machine
to SSH into, much less one with all the stuff I want on it.
Thanks in advance.
Brett
--
http://mail.python.org/mailman/listinfo/python-list
Rune Strand wrote:
> I know that problem... it's extremely annoying!
> Here's one way to solve it;
>
> 1. Start 'Device manager'.
> 2. On the menu, click 'View' and check off "Show hidden devices"
> 3. Locate 'Beep' 'under Non-Plug and Play Drivers'
> 4. Right-click 'Beep', select 'Disable'
Christ
ight click again to paste.
Thanks very much, not sure why I always missed those. I guess I was
just frustrated in general. This will make python a lot more
enjoyable.
Brett
--
http://mail.python.org/mailman/listinfo/python-list
Philippe C. Martin wrote:
> You might want to check out ipyhton.
I use it. :) I love it. When I meant console I meant the shell app
that runs any text-based programs. The windows console was giving me
loud beeps, etc, which I've now fixed.
Thanks for your reply though,
Brett
org/thesis.pdf) and
the section on problems with introducing type inference into Python.
-Brett
--
http://mail.python.org/mailman/listinfo/python-list
Wouldn't the standard idiom be to actually put the code under the
if-name, and not make a whole new main() function?
I'm not sure I see the reason behind main(), couldn't that also
interfere with other modules since main() seems like it might be
common, not sure how it would work as I'm pretty new
David Wilson wrote:
> http://www.ironpython.com/
It should be noted that they (?) don't seem to update that site
anymore, you can find 0.9.1 here:
http://workspaces.gotdotnet.com/ironpython
There is also Boo, which is Python-like (with some differences) but is
a .NET Language itself. I never und
olved and join
`python-dev`_!
This is the fifty-sixth summary written by Brett Cannon (I don't want to do my
homework).
To contact me, please send email to brett at python.org ; I do not have the
time to keep up on comp.lang.python and thus do not always catch follow-ups
posted there.
All
ython community of on-going
developments on the list on a semi-monthly basis. An archive_ of
previous summaries is available online.
An `RSS feed`_ of the titles of the summaries is available.
You can also watch comp.lang.python or comp.lang.python.announce for
new summaries (or through their email g
Steve Holden wrote:
Michele Simionato wrote [on c.l.py]:
Brett Cannon:
[... python-dev summary ... boilerplate change ...]
+1 for this idea. The summary looks much better now :)
Keep the good work going,
Sorry, but i have to disagree. I hope you won't take this reply
personally, Michele,
[taking python-dev off of the Cc: list]
Scott David Daniels wrote:
Brett C. wrote:
I have decided that I am going to stop doing the python-dev Summaries
> after PyCon; the Summary covering the last half of March 2005 will be
> it for me.
I (as well as most, I'd guess) have enjoyed yo
-monthly basis. An archive_ of
previous summaries is available online.
An `RSS feed`_ of the titles of the summaries is available.
You can also watch comp.lang.python or comp.lang.python.announce for
new summaries (or through their email gateways of python-list or
python-announce, respectively, as
on the list on a semi-monthly basis. An archive_ of
previous summaries is available online.
An `RSS feed`_ of the titles of the summaries is available.
You can also watch comp.lang.python or comp.lang.python.announce for
new summaries (or through their email gateways of python-list or
python-announc
oth bugs and patches should be reported to Python's SourceForge
tracker at http://sourceforge.net/bugs/?group_id=5470 and
http://sourceforge.net/patch/?group_id=5470, respectively.
-Brett Cannon
--
http://mail.python.org/mailman/listinfo/python-list
, so don't hesitate to take a stance on
something. And if all of this really interests you then get involved and join
`python-dev`_!
This is the fifty-second summary written by Brett Cannon (Happy Holidays).
To contact me, please send email to brett at python.org ; I do not have the
time to
`python-dev mailing list`_ from
March 01, 2005 through March 15, 2005.
It is intended to inform the wider Python community of on-going
developments on the list on a semi-monthly basis. An archive_ of
previous summaries is available online.
An `RSS feed`_ of the titles of the summaries is availabl
S feed`_ of the titles of the summaries is available.
You can also watch comp.lang.python or comp.lang.python.announce for
new summaries (or through their email gateways of python-list or
python-announce, respectively, as found at http://mail.python.org).
This is the sixty-first summary writ
On Thu Dec 11 2014 at 3:14:42 PM Dan Stromberg wrote:
> On Thu, Dec 11, 2014 at 11:35 AM, Mark Roberts wrote:
> > I disagree. I know there's a huge focus on The Big Libraries (and
> wholesale
> > migration is all but impossible without them), but the long tail of
> > libraries is still incredibl
On Mon, Sep 9, 2013 at 8:02 AM, Larry Hastings wrote:
>
> On behalf of the Python development team, I'm chuffed to announce the
> second alpha release of Python 3.4.
>
> This is a preview release, and its use is not recommended for
> production settings.
>
> Python 3.4 includes a range of improve
look into a more robust solution like placing your
application environment into something like a Docker container. This would
require your customer machine to be running Docker, but it makes
deployments highly portable as the container will sit on top of just about
any Linux flavor and can be entirely self contained.
Brett
--
https://mail.python.org/mailman/listinfo/python-list
On Wed, Dec 21, 2011 at 05:57, Jim Fulton wrote:
> On Wed, Dec 21, 2011 at 2:15 AM, Chris Withers
> wrote:
> > Hi All,
> >
> > What's the general consensus on supporting Python 2.5 nowadays?
> >
> > Do people still have to use this in commercial environments or is
> everyone
> > on 2.6+ nowadays
> 'food' or 'drink'
> > 'food'
> >
> > >>> {'class': 'food' or 'drink'}
> > {'class': 'food'}
"or" returns the first true element, anything but False or None,
tive type, see
http://www.voidspace.org.uk/python/odict.html)
dict datatypes do not maintain any specific order and aren't really
meant to, they're just handy, 'fast' hash lookups.
Brett
--
http://mail.python.org/mailman/listinfo/python-list
e who took the time and effort to set up a test tracker to help improve the development of Python.- Brett Cannon Chairman, PSF Infrastructure Committee
--
http://mail.python.org/mailman/listinfo/python-list
tal = guess + subtotal
You keep adding the original input (subtotal) to the most recent guess,
and printing "running_total". You never re-assign subtotal or make use
of running_total in your deepest loop.
Also, you never break out of your deepest loop, why are you using two
nested inf
spawn wrote:
> Actually, they do end. If I
> move my "guess" variable outside the outermost loop, then it becomes
> infinte. I know, I tried it.
Huh? When does "running" ever evaluate to false (therefore breaking
either of the loops)?
--
http://mail.python.org/mailman/listinfo/python-list
[EMAIL PROTECTED] wrote:
> A couple of times recently I've come across this problem: I have a
> large list to sort and I need to the the "key=function" argument to
> sort appropriately. But I actually have the key mapping in a big
> dictionary.
Is this what you mean? I suppose the lambda is an
an't use anything but
CPython software...?
Brett Hoerner
--
http://mail.python.org/mailman/listinfo/python-list
f who hosts the tracker). The administrators and python-dev can then begin working towards deciding what we want from the tracker and its configuration.
Once again, thanks to the volunteers for stepping forward to make this happen!-Brett CannonPSF Infrastructure committee chairman
--
http://mail.pytho
Steven D'Aprano wrote:
> Are there any string formatting codes that will place a space between the
> sign and the number?
Not that I know of, why not use the absolute value (after checking if
it is negative),
In [1]: abs(-1)
Out[1]: 1
--
http://mail.python.org/mailman/listinfo/python-list
frastructure at python.org .- Brett Cannon Chairman, Python Software Foundation Infrastructure committee
--
http://mail.python.org/mailman/listinfo/python-list
estions or concerns, please email infrastructure at python.org (it is subscription-protected, but your email will be accepted; the subscription page is at
http://mail.python.org/mailman/listinfo/infrastructure ). Thank you to those that have helped so far and those that do in the future.-Brett CannonCha
t;> f = a.read()
>>> f
'bin\nboot\ndev\netc\nhome\nlib\nlost+found\nmedia\nmisc\nmnt\nnet\nopt\nproc\nroot\nsbin\nselinux\nsrv\nsys\ntmp\nusr\nvar\n'
>>>
See the difference? :)
Brett Hoerner
--
http://mail.python.org/mailman/listinfo/python-list
nted to use pid.original() in your pid.add
call.
Brett Hoerner
--
http://mail.python.org/mailman/listinfo/python-list
Brett Hoerner wrote:
> Also, in order to call a function without arguments you still need to
> use (), so you probably wanted to use pid.original() in your pid.add
> call.
Sorry, never mind this bit, I misread the line. But you do probably
want to change the class test into a func
nope, we where one short plus mark just pulled out so now we're two short. if
you can get ANYONE that would be great?
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf
Of [EMAIL PROTECTED]
Sent: 10 February 2006 02:21
To: python-list@python.org
Subject: Python-li
, is difficult thanks
to things being so dynamic and thus not easy to guarantee to be
correct between compile-time and run-time.
-Brett
--
http://mail.python.org/mailman/listinfo/python-list
st thing I want happening is people finding mistakes in the code. =) But if
enough people request the source I will take the time to generate a tar.bz2
file of patches against the 2.3.4 source release and put them up somewhere.
Below is the abstract culled directly from the thesis it
u mean "how many bytes does this object
take in memory" - and I believe the short answer is no.
Brett
--
http://mail.python.org/mailman/listinfo/python-list
s.google.com/group/comp.lang.python/browse_thread/thread/a7b9f3c03fb49aa/0e793beec82884f0?lnk=gst&q=size+object&rnum=4#0e793beec82884f0
Brett
--
http://mail.python.org/mailman/listinfo/python-list
e a branch.
Thanks in advance to anyone who gives the code a whirl.
-Brett
--
http://mail.python.org/mailman/listinfo/python-list
this gap to be for a few hours. But to
minimize issues, please try to avoid using either SourceForge or the
new issue tracker on Aug 23rd if you can.
-Brett Cannon
Chairman, PSF Infrastructure committee
--
http://mail.python.org/mailman/listinfo/python-list
mailing list. And if I forgot someone, thanks to them
as well. =)
-Brett Cannon
Chairman, PSF Infrastructure committee
--
http://mail.python.org/mailman/listinfo/python-list
).start()
finally:
curses.nocbreak()
stdscr.keypad(0)
curses.echo()
curses.endwin()
I can't figure out why the cursor still shows and why they terminal is
screwed up afterward because the finally: should catch any failures
and reset the terminal.
-Brett
--
http://mail.python.org/
oesn't work. I
guess what I'm trying to say is how can I tell the main thread what to
do when it doesn't exist in my code?
Thanks for the help
-Brett
--
http://mail.python.org/mailman/listinfo/python-list
r the sprint by the end of February as an email on
what you need to do beforehand will be sent at that time based on the
sprint sign-up page.
And if you are not attending PyCon, we will most likely have several
people in attendance on IRC, thus allowing even people not at PyCon to
participate!
-
multiple threads with curses now I think I will
be set.
-Brett
--
http://mail.python.org/mailman/listinfo/python-list
ready and
those that will in the future!
-Brett Cannon
Chairman, PSF infrastructure committee
--
http://mail.python.org/mailman/listinfo/python-list
X 10.5.2 (gcc 4.0.1) for 2.37 I am getting a ton of:
sem_post: Bad file descriptor
sem_init: Function not implemented
sem_trywait: Bad file descriptor
-Brett
--
http://mail.python.org/mailman/listinfo/python-list
't
want to follow python-dev or python-3000 but still have your opinion
be heard. The other way is to subscribe to the PEP news feed (found
off of http://www.python.org/dev/peps/) to keep on top of PEPs as
practically all language changes have to result in a PEP at some
point. And of course the last option is to follow python-dev. =)
-Brett
--
http://mail.python.org/mailman/listinfo/python-list
= "Section 1"
for line in f:
if Name in line:
while x<20
field = files.next()
if "2.6" in field:
*files.previousline()*
break
x=x+1
Thanks,
Brett
--
http://mail.python.org/mailman/listinfo/python-list
and it does not seem
to work. The files.tell() command seems to give me a number but when I use the
files.next() command with xreadlines it does not change the line number the
next time I use files.tell().
Thanks,
Brett
--- On Thu, 2/26/09, bearophileh...@lycos.com wrote:
> Fro
> - if it is a directory, it checks for .pkg files. If it finds any,
> it processes them, extending __path__.
> - it *then* checks for __init__.py, taking the first hit anywhere
> on __path__ (just like any module import would)
Just so people know how this __init__ search cou
is even going
on here?
I, for one, would take Martin's any day of the week. It reads like
good pseudocode as much "proper" Python does.
Brett
--
http://mail.python.org/mailman/listinfo/python-list
In 2.5, this is what I get:
Python 2.5.2 (r252:60911, May 7 2008, 15:19:09)
[GCC 4.2.3 (Ubuntu 4.2.3-2ubuntu7)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> class Foo(Exception):
... member = None
... def __init__(self,member):
... self.member=membe
After many years happily coding Perl, I'm looking to expand my
horizons. [no flames please, I'm pretty aware of Perl's strengths and
weaknesses and I'm just here to learn more, not to enter religious
debates].
I've gone through some of the online tutorials and I'll be browsing
the reference before
New to Python, and I have some questions on how to best set up a basic
development environment, particular relating to path issues.
Note: I am not root on my development box (which is some flavor of
BSD)
Where should I develop my own modules so as to refer to them in the
standard way. I.E. I wan
On Jul 26, 2:57 pm, Gary Josack <[EMAIL PROTECTED]> wrote:
> sys.path is a list that will tell you where python is looking. You can
> append to this in your scripts to have python look in a specific
> directory for your own modules.
I can, but that is almost certainly not the standard way to devel
On Jul 28, 4:54 am, Hussein B <[EMAIL PROTECTED]> wrote:
> Hi.
> I'm a Java guy and I'm playing around Python these days...
> In Java, we organize our classes into packages and then jarring the
> packages into JAR files.
> What are modules in Python?
> What is the equivalent of modules in Java?
I'
On Aug 4, 3:43 pm, Gary Herron <[EMAIL PROTECTED]> wrote:
> A page of Python code looks *clean*, with not a lot of
> punctuation/special symbols and (in particular) no useless lines
I am actually going to buck the trend.
My first impression of Python was that it was visually hard to parse.
When
ully with Adobe Acrobat Reader.
Is this code inorrect or is there some other way to correct this error? Or
does the code depend on the system?
(I'm using Windows XP, but I believe the author was using a *nix)
Sincerely,
Brett Bowman
--
http://mail.python.org/mailman/listinfo/python-list
age - the standard error message from rm
and if I use:
cwd = os.getcwd()
os.remove(cwd + "\\" + pdfFile)
I get "WindowsError: [Error 32]" saying much the same thing.
What am I missing? Any suggestions would be appreciated.
Details:
Python 2.6
Windows XP
Sincerely,
Brett Bowman
--
http://mail.python.org/mailman/listinfo/python-list
ov 16, 2010 at 11:25 PM, Dennis Lee Bieber
wrote:
> On Tue, 16 Nov 2010 17:37:10 -0800, Brett Bowman
> declaimed the following in gmane.comp.python.general:
>
> >
> > And then I test the result:
> > try:
> > pdf_handle = open(outputFile, "rb")
I ran into an interesting problem trying to spawn a subprocess, so I thought
I'd ask if the experts could explain it to me. I'm spawning a subprocess to
run "pdf2txt.py", which is a tool that is distributed with PDFminer to do
moderately advanced text-dumps of PDFs. Yet when I run the same code o
Ah, that fixed it. Thank you.
On Tue, Nov 23, 2010 at 11:37 AM, Chris Rebert wrote:
> On Tue, Nov 23, 2010 at 11:28 AM, Brett Bowman wrote:
> > I ran into an interesting problem trying to spawn a subprocess, so I
> thought
> > I'd ask if the experts could explain it
s a package for older pythons.
Berkeley DB is pretty much interchangeable with SQLite in terms of
functionality. I much prefer SQLite. If your web application intends
to have multiple users interacting with the same data, neither is
probably a good fit.
--
Brett Ritter / SwiftOne
swift...@swift
Hi,
I sorry if this is a bad place to ask, but I wanted to find out if the
behavior I'm seeing is a bug.
I maintain scipy's matlab file readers, and I came across a zlib
compressed string that causes a zlib error on decompression, but only
with zlib.decompress, not zlib.decompressobj.
I saved th
Hi,
Thanks for the reply.
> > If instead I do this:
>
> > out = zlib.decompressobj().decompress(data)
>
> How about:
>
> d = zlib.decompressobj()
> out = d.decompress(data) + d.flush()
Do you mean, that you would then expect the decompressobj method to
fail as well?
But, no, d.flush() returns t
Hi,
> > Do you mean, that you would then expect the decompressobj method to
> > fail as well?
>
> Yes.
>
> > But, no, d.flush() returns the empty string after decompressing
> > ``data``.
>
> Hmm, then it's a bug. Can you report it tohttp://bugs.python.org?
I will - thanks for your advice,
Matthe
1 - 100 of 127 matches
Mail list logo