I have read some of the talk around these two frameworks.
Would you say that web2py is more geared toward the enterprise?
Which one do you believe will be on Python 3 more quickly?
--
http://mail.python.org/mailman/listinfo/python-list
On 2010-11-11 08:07, chad wrote:
Let's say that I have an article. What I want to do is read in this
file and have the program skip over ever instance of the words "the",
"and", "or", and "but". What would be the general strategy for
attacking a problem like this?
I realize that you may need o
On 2010-11-11 11:20, Stef Mientki wrote:
On 11-11-2010 19:01, Steve Holden wrote:
On 11/11/2010 9:22 AM, Stef Mientki wrote:
hello,
finally got Python running at my server.
Now I would like to replace the PHP server scripts with Python ( for easier
maintenance).
But I can't find how th get
So, what is not a regular file about this? Is there any way to find out
which files are being considered irregular?
$ uname -a
CYGWIN_NT-6.0-WOW64 pwatson 1.7.7(0.230/5/3) 2010-08-31 09:58 i686 Cygwin
$ cat setup.py
from distutils.core import setup
setup(
name='xlsexport',
version='0
On 2010-09-12 16:40, Ben Finney wrote:
This is a dream shared by many, but Distutils has much improvement to be
done yet. Recently — the past couple of years — a lot of progress has
been made on this front, and Python 3.x is getting many of the benefits;
look up the “Distutils2” efforts for more.
What is the currently favored installation process for Python applications?
The last time I looked, it was eggs. Is that still true? Is there any
integration of eggs and handling into the base Python distribution? Is
PEP 376 intended for applications written in Python, or just the Python
di
On Sun, 2009-04-12 at 06:18 -0700, Fuzzyman wrote:
> On Apr 11, 12:16 am, Paul Watson wrote:
> > Is Parrot out of favor these days? It appears that Google is going to
> > use llvm.
> >
> > http://code.google.com/p/unladen-swallow/
>
> Has Parrot ever been in fa
It appears that 3.1.1 built pretty cleanly on my SUSE 11 box. However,
the curses test appears to fail. I see this message on the
www.python.org site many times when searching Google, but the contents
appears to have been removed.
http://www.google.com/search?hl=en&as_q=test+test_curses+crashed+
Has anyone used GNUstep?
In addition to Objective-C, there are Java and Ruby bindings.
Has anyone created a Python binding to GNUstep?
--
http://mail.python.org/mailman/listinfo/python-list
On Mon, 2009-04-13 at 17:03 +0200, WP wrote:
> Hello, I have dictionary {1:"astring", 2:"anotherstring", etc}
>
> I now want to print:
> "Press 1 for astring"
> "Press 2 for anotherstring" etc
>
> I could do it like this:
> dict = {1:'astring', 2:'anotherstring'}
> for key in dict.keys():
>
Is Parrot out of favor these days? It appears that Google is going to
use llvm.
http://code.google.com/p/unladen-swallow/
--
http://mail.python.org/mailman/listinfo/python-list
On Sun, 2009-03-22 at 17:00 +, Timo Myyrä wrote:
> Ok, I think I'll stick with the 2.6 then. I recall it gave
> warnings about things that are deprecated in 3.0 so it will make
> porting the scripts to 3.0 easier.
>
> I might try 3.0 once I know what kind of scripts are needed.
Yes. Devel
On Sat, 2009-03-21 at 08:10 -0700, W. eWatson wrote:
> Paul Watson wrote:
> > Has anyone tried the Grayson book, "Python and Tkinter Programming,"
> > with a recent version of Python?
> >
> > The first example code (calculator) generates a single row of button
On Sat, 2009-03-21 at 04:12 +0100, Lada Kugis wrote:
> I'm a newbie learning python, so forgive for, what may seem to some,
> like a stupid question.
>
> I understand the basic integer and fp type, but what I'm having a
> little trouble are the long type and infinite precision type.
>
> Also, whe
Has anyone tried the Grayson book, "Python and Tkinter Programming,"
with a recent version of Python?
The first example code (calculator) generates a single row of buttons.
Perhaps I have not applied the errata correctly. Has anyone been
successful?
I am using:
Python 2.5.2 (r252:60911, Dec 1
On Tue, 2008-12-16 at 08:26 -0800, aka wrote:
> Hi, I'm going nuts over the csv.reader and UnicodeReader class.
> Somehow I can't get this method working which is supposed to read a
> csv file which name is inputted but here now hardcoded. What I need
> for now is that the string version of the lis
On Sat, 2008-12-06 at 10:57 +0100, "Martin v. Löwis" wrote:
> > Ok. I built the source on an openSUSE 11.0 system. I used 'sudo make
> > altinstll'. It created an executable /usr/local/bin/python3.0 file.
> > Nothing was touched in /usr/bin.
>
> Ah, then you missed the fun part. Take a look at
On Sat, 2008-12-06 at 01:27 +0100, "Martin v. Löwis" wrote:
> > For *NIX machines, will 'python' be placed into /usr/bin?
>
> Not by default, no. Just try it and see for yourself.
>
> Regards,
> Martin
Ok. I built the source on an openSUSE 11.0 system. I used 'sudo make
altinstll'. It created
On Fri, 2008-12-05 at 02:10 +0100, "Martin v. Löwis" wrote:
> > Since the source code is incompatible, I was expecting the Python
> > executable to have a new name such as 'python3'
>
> It does: the executable is called python3.0.
>
> > or for the default
> > source code filename to change to '.p
The migration strategy detailed in PEP 3000 using 2to3 is quite nice.
However, I am looking for suggestions for migrating to 3 while I still
have code that requires 2.
Since the source code is incompatible, I was expecting the Python
executable to have a new name such as 'python3' or for the defau
Has anyone successfully accessed a Microsoft SharePoint WSS using
Python? No, not IronPython. I need for this to be able to run on all
machines the customer might choose.
Which libs are you using? ZSI, SOAPpy, soaplib, ???
http://wiki.python.org/moin/WebServices
--
http://mail.python.org/mai
On Fri, 2008-01-25 at 16:52 +0530, Amogh Hooshdar wrote:
> Hi,
>
> I wish to know which python library is popular for SOAP related
> programming, especially for sending SOAP requests and parsing SOAP
> responses.
>
> I can't find any such library in the Python standard library but I
> could find
On Tue, 2008-02-19 at 10:01 -0800, Paul Boddie wrote:
> On 19 Feb, 16:59, Paul Watson <[EMAIL PROTECTED]> wrote:
> >
> > Have I offended? My apologies if I have. I thought I showed that I had
> > done some homework and used Google and did the other things to show th
On Tue, 2008-02-19 at 10:01 -0800, Paul Boddie wrote:
> On 19 Feb, 16:59, Paul Watson <[EMAIL PROTECTED]> wrote:
> >
> > Have I offended? My apologies if I have. I thought I showed that I had
> > done some homework and used Google and did the other things to show th
On Sat, 2008-02-16 at 10:59 -0600, Paul Watson wrote:
> What are the reasonable current day choices and best bets for the future
> when doing SOAP programming in Python? SOAP batteries do not appear to
> be in the standard Python distribution.
>
> Most of the SOAP related inf
What are the reasonable current day choices and best bets for the future
when doing SOAP programming in Python? SOAP batteries do not appear to
be in the standard Python distribution.
Most of the SOAP related information I have been able to find on the web
is from 2001-2002. I am not sure if som
I would like to create some additional shapes in Microsoft Visio using
the Python language. It would appear that Visio can use any CLR
language. Has anyone done this? Can I use the Python package from
python.org, or must I use IronPython?
--
http://mail.python.org/mailman/listinfo/python-lis
Tequila wrote:
> I'm having some trouble starting PythonCard on my PC.
>
> I've downloaded and ran python-2.5.msi to install Python on my
> machine. And PythonCard-0.8.2.win32.exe to install PythonCard.
>
> When I try to run the program I get the following error:
> =
jbchua wrote:
> Hello everybody.
>
> I am an Electrical Engineering major and have dabbled in several
> languages such as Python, C, and Java in my spare time because of my
> interest in programming. However, I have not done any practical
> programming because I have no idea where to get started.
Paul Watson wrote:
> Eric Price wrote:
>> Hello;
>> I'm studying some code examples from the python cookbook site. I came
>> across this:
>>
>> def colsplit(l, cols):
>>rows = len(l) / cols
>>if len(l) % cols:
>>rows += 1
>
Eric Price wrote:
> Hello;
> I'm studying some code examples from the python cookbook site. I came
> across this:
>
> def colsplit(l, cols):
>rows = len(l) / cols
>if len(l) % cols:
>rows += 1
>m = []
>for i in range(rows):
>m.append(l[i::rows])
>return m
>
>
Martin v. Löwis wrote:
> Paul Watson schrieb:
>> ./configure
>> make
>> make test
>>
>> The result appears to hang after the test_tkl... line. I had to kill
>> the 'make test' process which terminated it. Any suggestions?
>
> There isn
./configure
make
make test
The result appears to hang after the test_tkl... line. I had to kill
the 'make test' process which terminated it. Any suggestions?
280 tests OK.
4 tests failed:
test_optparse test_socket test_socket_ssl test_urllib2
35 tests skipped:
test_aepack test_al te
JTree wrote:
> Thanks everyone!
>
> Sorry for my ambiguous question.
> I changed the codes and now it works fine.
>
>
>
> JTree wrote:
>> Hi,all
>> I encountered a problem when using unicode() function to fetch a
>> webpage, I don't know why this happenned.
>> My codes and error messa
Tim Roberts wrote:
> [EMAIL PROTECTED] wrote:
>> Interesting impl in Python! I am wondering what if the requirement is
>> to find the minimum number of coins which added to the "fin" sum...
>
> Given the set of coins in the original problem (100, 10, 5, 1, 0.5), the
> solution it provides will alw
Better alternative.
cointype = (100, 10, 5, 1, 0.5)
def coins(fin):
needed = {}
for c in cointypes:
v, r = divmod(fin, c)
if v > 0:
needed[c] = v
fin = r
return needed
if __name__ == '__main__
smartbei wrote:
> Felix Benner wrote:
>> smartbei schrieb:
>>> Hello, I am a newbie with python, though I am having a lot of fun using
>>> it. Here is one of the excersizes I am trying to complete:
>>> the program is supposed to find the coin combination so that with 10
>>> coins you can reach a ce
Stefan Antonelli wrote:
> Hi,
>
> i have to convert several timestamps. The given format, eg "-mm-dd
> hh:mm:ss"
> has to be converted to an epoch string. Is there any proper way to do this?
>
> If not, i have to split the given string and resolve this by a calculation?
>
> Thanks for help.
Ian F. Hood wrote:
> Hi
> In typically windows environments I have used:
> if 'Windows' in os.environ['OS']...
> to prove it, but now I need to properly support different environments.
> To do so I must accurately determine what system the python instance is
> running on (linux, win, mac, etc)
Andrew Sackville-West wrote:
> Hi list,
>
> I am new to python and old to coding (as in I did it a long time
> ago). I've got a task that cries out for a scripted solution --
> importing chunks of ASCII data dumps from a point-of-sale system into
> an openoffice.org spreadsheet. What a great chan
Fredrik Lundh wrote:
> Danny Scalenotti wrote:
>
>> I'm not able to get out of this ...
>>
>> from xml.dom.minidom import getDOMImplementation
>>
>> impl = getDOMImplementation() // default UTF-8
>> doc = impl.createDocument(None, "test",None)
>> root = doc.documentElement
>> root.setAttribu
GHUM wrote:
> I stumbled apon a paragraph in python-dev about "reducing the size of
> Python" for an embedded device:
>
> """
> In my experience, the biggest gain can be obtained by dropping the
> rarely-used
> CJK codecs (for Asian languages). That should sum up to almost 800K
> (uncompressed), I
It would appear that xml.dom.minidom or xml.sax.* might be the best
thing to use since PyXML is going without support. Best of all it is
included in the base Python distribution, so no addition hunting required.
Is this right thinking? Is there a better solution?
--
http://mail.python.org/mai
David Isaac wrote:
> I have no experience with database applications.
> This database will likely hold only a few hundred items,
> including both textfiles and binary files.
>
> I would like a pure Python solution to the extent reasonable.
>
> Suggestions?
>
> Thank you,
> Alan Isaac
If you wan
Michael Ekstrand wrote:
> On Fri, May 05, 2006 at 05:08:24PM +, Mark Harrison wrote:
>
>>Is there a way to get rid of those the "self." references, or is this
>>just something I need to get my brain to accept?
>
>
> It's pretty much just something you'll need to get your brain to accept.
> Y
Adonis wrote:
> Paul Watson wrote:
>
>> Is there any chance that Python would support the --version command
>> line parameter? It seems that many open source programs use this
>> switch to report their version number.
>
>
>
> try at a command prom
Is there any chance that Python would support the --version command line
parameter? It seems that many open source programs use this switch to
report their version number.
--
http://mail.python.org/mailman/listinfo/python-list
DarkBlue wrote:
> Chris wrote:
>
>
>>How do I find and print to screen the IP address of the computer my
>>python program is working on?
>
>
> def readip():
> import re, urllib
> f = urllib.urlopen('http://checkip.dyndns.org')
> s = f.read()
> m = re.search('([\d]*\.[\d]*\.[\d]*\.[\d]*)', s
timw.google wrote:
> I just downloaded the pyodbc source to try and install on my Linux FC3
> box. I see that there is a setup.py file, but when I try to do a
> 'python setup.py build' (or just 'python setup.py') I get
>
> Traceback (most recent call last):
> File "setup.py", line 27, in ?
>
gregarican wrote:
> Paul Watson wrote:
>
>
>>Does pwm run well on Python 2.4? The last release appears to be in
>>2003. The Manning discussion forum is dead.
>>
>>Is there a better path to learning and producing tkInter apps?
>>
>>
>>Has the
Does pwm run well on Python 2.4? The last release appears to be in
2003. The Manning discussion forum is dead.
Is there a better path to learning and producing tkInter apps?
Has there been any discussion of wxPython becoming part of the base
Python distro? A requirement here is to not requir
Lawrence Oluyede wrote:
> "eels" <[EMAIL PROTECTED]> writes:
>
>
>>With yyy = ftp.retrlines('LIST') I get this listing at stdout, but I
>>need this information at variable yyy.
>>How can I resolve this problem?
>
>
> As written in the doc retrlines has an optional parameter (a callback
> funct
Christoph Zwerschke wrote:
> On the page http://wiki.python.org/moin/Python3%2e0Suggestions
> I noticed an interesting suggestion:
>
> "These operators ≤ ≥ ≠ should be added to the language having the
> following meaning:
>
> <= >= !=
>
> this should improve readibility (and make language
pycraze wrote:
> Hi guys,
>
> I Need to know how do i create a dictionary... eg:
> n = pali_hash
> n={}
> n={1:{ } } -> i need to know how to make a key of a dictionary, to a
> dictionary using Python/C API's
It looks like you are asking how to create a dictionary (hash). If it
is more t
ankit wrote:
> Hi All,
> I want to remove a substring from a string without any additional
> tabs/returns in the output string. Is there any method availaible or
> how can I do it. For the ease, I am giving an example:
>
> [code]
> mainstr ="""
> ${if:isLeaf}
> Dont include this isLeaf=True
> ${
Martin P. Hellwig wrote:
> [EMAIL PROTECTED] wrote:
>
>> Does anybody know how to get the:
>>
>> Free hard disk space
>> Amount of CPU load
>> and Amount of RAM used
>>
>> on windows? I am making an artificial intelligence program that has
>> "moods" based on how much stress the sys
Ron Griswold wrote:
> Hi Dennis,
>
> Yes, I am equating a unix soft link to a windows shortcut. Both act as
> links to a file or directory.
>
> I have found that windows shortcuts do appear in linux dir listings with
> a .lnk extension, however the file is meaningless to linux. On the other
> ha
rbt wrote:
> Is it safe to say that any value returned by os.system() other than 0 is
> an error?
>
> if os.system('winver') != 0:
> print "Winver failed!"
> else:
> print "Winver Worked."
>
> Thanks!
What are you really seeking to do? Are you wanting to detect if your
code is running
Neil Hodgson wrote:
> Paul Watson:
>
>> I cannot find any way to get to GetVersionInfo in VBScript (cscript).
>
>
> Set objFSO = CreateObject("Scripting.FileSystemObject")
> Wscript.Echo objFSO.GetFileVersion("c:\bin\SciLexer.dll")
Many thanks. Ju
Martin v. Löwis wrote:
> Paul Watson wrote:
>
>>I need to call GetVersionInfo() and handle VERSIONINFO information. I
>>thought that distutils might have something, but I do not see it yet.
>>Any suggestions?
>
> You could write this specific API in VB, and then r
Cuyler wrote:
> I would like to display a file in its binary form (1s and 0s), but I'm
> having no luck... Any thoughts would be most appreciated.
If you are on a UNIX system, or on Windows with Cygwin, you can use the
'od' command to dump a file in hex or octal.
man od
od -Ax -t
Martin v. Löwis wrote:
> Paul Watson wrote:
>
>>I need to call some Windows APIs. Is the only way to download ctypes or
>>the win32 interfaces?
>
>
> That depends on the specific win32 interface you want to call.
> Typically, the answer is "yes".
I hav
Neil Hodgson wrote:
> Paul Watson:
>
>> Is there any plan to get ctypes batteries into the standard Python build?
>
>
>It is unlikely that ctypes will be included in the standard Python
> build as it allows unsafe memory access making it much easier to crash
&
I need to call some Windows APIs. Is the only way to download ctypes or
the win32 interfaces? Is there any plan to get ctypes batteries into
the standard Python build?
--
http://mail.python.org/mailman/listinfo/python-list
[EMAIL PROTECTED] wrote:
> I'm not what you'd call a "programmer" of any sort, so perhaps this
> question may seem arcane and result in a plethora of "you idiot"
> threads, but here goes:
>
> ArcGIS 9.1 has a neat interface with python (2.1-2.4), allowing me to
> do all sorts of spatial operations
[EMAIL PROTECTED] wrote:
> I want to write to the pins of an RS232 without using the serial
> protocol. The use would be every pin could act to complete a circuit
> in customized hardware. I could use python to communicate serially to
> a BASIC stamp or a Javelin stamp and then use the stamp to s
mojosam wrote:
> I've been watching the flame war about licenses with some interest.
> There are many motivations for those who participate in this sector, so
> disagreements over licenses reflect those agendas.
>
> I don't have an agenda, at least not right now. I do plan on writing a
> few prog
Martin v. Löwis wrote:
> Paul Watson wrote:
>
>> It appears that _ALL_SOURCE gets defined in the
>> /usr/include/standards.h file. If we could #define _ANSI_C_SOURCE or
>> _POSIX_SOURCE, it appears that it would eleminate _ALL_SOURCE.
>
>
> Ah, ok - this sh
Martin v. Löwis wrote:
> Paul Watson wrote:
>
>> Can we #undef _ALL_SOURCE for _codecs_cn.c compilation?
>
>
> Where does _ALL_SOURCE come from? Why is it defined?
> What is its effect on hz?
>
> Regards,
> Martin
Martin v. Löwis wrote:
> Paul Watson wro
Martin v. Löwis wrote:
> Paul Watson wrote:
>
>> Any ideas why ./Modules/cjkcodecs/_codecs_cn.c fails to compile? It
>> appears that the CODEC_STATELESS macro is concatenating 'hz' with a
>> number and text.
>
>
> More likely, hz is already defined
Martin v. Löwis wrote:
> Paul Watson wrote:
>
>> Any ideas why ./Modules/cjkcodecs/_codecs_cn.c fails to compile? It
>> appears that the CODEC_STATELESS macro is concatenating 'hz' with a
>> number and text.
>
>
> More likely, hz is already defined
Any ideas why ./Modules/cjkcodecs/_codecs_cn.c fails to compile? It
appears that the CODEC_STATELESS macro is concatenating 'hz' with a
number and text.
building '_codecs_cn' extension
cc -DNDEBUG -O -I. -I/home/pwatson/src/python/Python-2.4.2/./Include
-I/home/pwatson/src/python/Python-2.4.2
Neal Norwitz wrote:
> Paul Watson wrote:
>
>>When I try to build 2.4.2 on AIX 4.3, it fails on missing thread
>>objects. I ran ./configure --without-threads --without-gcc.
>>
>>Before using --without-threads I had several .pthread* symbols missing.
>
>
&g
When I try to build 2.4.2 on AIX 4.3, it fails on missing thread
objects. I ran ./configure --without-threads --without-gcc.
Before using --without-threads I had several .pthread* symbols missing.
I do not have to have threading on this build, but it would be helpful
if it is possible. The
Robin Becker wrote:
> Paul Watson wrote:
> ..
>
>>> -- David
>>
>>
>>
>> This looks interesting, but looks even more fragile than CrackAJAX.
>>
>> http://www.aminus.org/blogs/index.php/phunt/2005/10/06/subway_s_new_ajax_framework
>>
John J. Lee wrote:
> Paul Watson <[EMAIL PROTECTED]> writes:
>
>
>>What are the options?
>>
>>The user to hits a web page, downloads code (Python I hope), execute it,
>>and be able to return the results. It needs to be able to go through
>>standa
David Wahler wrote:
> Steve wrote:
>
>>AJAX works because browsers can execute javascript. I don't know of a
>>browser that can execute python. Basically your stuck with java or
>>javascript because everything else really isn't cross platform
>
>
> Don't jump to conclusions...
> http://dwahler
Kent Johnson wrote:
> Stephen Kellett wrote:
>
>> In message <[EMAIL PROTECTED]>,
>> Steve <[EMAIL PROTECTED]> writes
>>
>>> AJAX works because browsers can execute javascript. I don't know of a
>>> browser that can execute python. Basically your stuck with java or
>>> javascript because everyt
Steve wrote:
> AJAX works because browsers can execute javascript. I don't know of a
> browser that can execute python. Basically your stuck with java or
> javascript because everything else really isn't cross platform.
Well, I guess the Grail browser could run Python, but I do not think I
can
tim wrote:
> Hi all, I'm almost as new to this list as to python so I hope I don't
> get a "this has been answered a 100 times before" or anything...
>
> Currently I am using a program named 'Macro Scheduler' for automating
> programs that don't have a command line version.
> Its a simple script
What are the options?
The user to hits a web page, downloads code (Python I hope), execute it,
and be able to return the results. It needs to be able to go through
standard HTTP so that it could be run from behind a corporate firewall
without any other ports being opened.
Am I stuck doing an
Sinan Nalkaya wrote:
> hello everybody,
> how can i just get 1 character ? i`ve done a search but just found
> getch() for windows, i need same for unix and raw_input has any option
> that is not documented ?
> thanks.
Please use Google.
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/1
Ksenia Marasanova wrote:
> Hi,
>
> I have python2.3, installed from port /lang/python long time ago. The
> current version is 2.4, but I'd rather have two python versions,
> instead of upgrading.
> Is there maybe a way to somehow link installed python to
> /lang/python2.3 port, and then upgrade po
Chad Everett wrote:
> Hey guys,
>
> Thanks for the hint.
> I found that info last night but I could never get it to print more than
> just the last letter.
> or it would only print partially.
> I was using just a single colon, the double colon did it.
If you were using a single colon, then it w
Chad Everett wrote:
> Hello all,
>
> Have a problem here with a challenge from a book I am reading.
> Any help is much appreciated.
>
> I am trying to run a program that asks the user for a statement and then
> prints it out backwards.
> this is what I have.
> It does not print anything out. I
Simon Brunning wrote:
> On 14/11/05, john boy <[EMAIL PROTECTED]> wrote:
>
>>I have started out trying to learn Python for my first programming language.
>> I am starting off with the book "how to think like a computer scientist."
>>I spend about 4-5 hrs a day trying to learn this stuff. It is ce
Paul Watson wrote:
> I cannot yet get tkinter working on 2.4.2. I have installed the tk rpms
> from FC4. I have checked to see that TKPATH is available in
> Modules/Setup.
>
> How can I verify that I have tcl/tk installed correctly and it is the
> correct version (8+)?
I cannot yet get tkinter working on 2.4.2. I have installed the tk rpms
from FC4. I have checked to see that TKPATH is available in
Modules/Setup.
How can I verify that I have tcl/tk installed correctly and it is the
correct version (8+)?
--
http://mail.python.org/mailman/listinfo/python-l
Alex Martelli wrote:
> Steve Holden <[EMAIL PROTECTED]> wrote:
>...
>
>>>The runtime knows it is doing it. Please allow the runtime to tell me
>>>what it knows it is doing. Thanks.
>>
>>In point oif fact I don't believe the runtime does any such thing
>>(though I must admit I haven't checke
Paul Rubin wrote:
> [EMAIL PROTECTED] (John J. Lee) writes:
>
>>Closing off this particular one would make it harder to get benefit of
>>non-C implementations of Python, so it has been judged "not worth it".
>>I think I agree with that judgement.
>
>
> The right fix is PEP 343.
I am sure you ar
Steve Holden wrote:
>> Since everyone needs this, how about building it in such that files
>> which are closed by the runtime, and not user code, are reported or
>> queryable? Perhaps a command line switch to either invoke or suppress
>> reporting them on exit.
>>
> This is a rather poor substi
Alex Martelli wrote:
...
gc.garbage
>
> [<__main__.a object at 0x64cf0>, <__main__.b object at 0x58510>]
>
> So, no big deal -- run a gc.collect() and parse through gc.garbage for
> any instances of your "wrapper of file" class, and you'll find ones that
> were forgotten as part of a cyclic g
Fredrik Lundh wrote:
> Paul Watson wrote:
>
>>This is Cyngwin on Windows XP.
>
> using cygwin to analyze performance characteristics of portable API:s
> is a really lousy idea.
Ok. So, I agree. That is just what I had at hand. Here are some other
numbers to which due d
It is clear that just using 'print' with variable names is relatively
uncontrollable. However, I thought that using a format string would
reign the problem in and give the desired output.
Must I resort to sys.stdout.write() to control output?
$ python
Python 2.4.1 (#1, Jul 19 2005, 14:16:43)
[
"Alex Martelli" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> In today's implementations of Classic Python, yes. In other equally
> valid implementations of the language, such as Jython, IronPython, or,
> for all we know, some future implementation of Classic, that may well
> not
"Mike Meyer" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> "Paul Watson" <[EMAIL PROTECTED]> writes:
...
> Did you do timings on it vs. mmap? Having to copy the data multiple
> times to deal with the overlap - thanks to strings being i
"Paul Watson" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
>>I want to scan a file byte for byte for occurences of the the four byte
>> pattern 0x0100. I've
<[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>I want to scan a file byte for byte for occurences of the the four byte
> pattern 0x0100. I've tried with this:
>
> # start
> import sys
>
> numChars = 0
> startCode = 0
> count = 0
>
> inputFile = sys.stdin
>
> while True:
>ch =
<[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>I want to scan a file byte for byte for occurences of the the four byte
> pattern 0x0100. I've tried with this:
>
> # start
> import sys
>
> numChars = 0
> startCode = 0
> count = 0
>
> inputFile = sys.stdin
>
> while True:
>ch =
"Nikola" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I'm currently learning Python for my own use.
> I'm considering installing it on a work laptop, knowing that it is
> non-licensed, distributable software.
>
> However, does it access communication ports? I know the company che
1 - 100 of 133 matches
Mail list logo