Re: Working with fixed format text db's

2007-06-08 Thread Neil Cerutti
On 2007-06-08, Marc 'BlackJack' Rintsch [EMAIL PROTECTED] wrote: In [EMAIL PROTECTED], Neil Cerutti wrote: new = file(new.dat, w) if not new: print Error. Could not open file new.dat for writing. raw_input(Press Return To Exit.) sys.exit(1) Hey, Python is not C. File objects

How to use TLS lite

2007-06-08 Thread Mr SZ
I'm using tls lite to send mail using gmail's smtp.This is what I've done: from tlslite.api import * import tlslite.integration.SMTP_TLS connection= tlslite.integration.SMTP_TLS.SMTP_TLS('smtp.gmail.com',587) connection.set_debuglevel(1) msg = Subject:Testing \n Hello connection.starttls('[EMAIL

Re: FTP/SSL

2007-06-08 Thread billiejoex
On 8 Giu, 16:54, Dave Borne [EMAIL PROTECTED] wrote: I'm trying to figure out how to use FTP/SSL (FTPS) - just as a client. Can I do this in Python? Is everything I need in ftplib? Where else do I look? And - any good newbie references on using FTPS? Hi, Nancy, I'm not sure if ftplib can

Re: python integration

2007-06-08 Thread Bjoern Schliessmann
Dee Asbury wrote: I am looking for a method to integrate in Python, my problem is that I do not want the summed up result. I need the result in the form of a list (or array) with the x-values (or ranges) and the volume beneath that section of the curve only. Why don't you then split up your

Re: Binary / SOAPpy

2007-06-08 Thread Tim Golden
Robert Rawlins - Think Blue wrote: I have a WebService call which returns an array, the first element in that array is the binary for a zip file, however I’m having trouble writing that binary string into an actual file when it arrives, I’ve tried the following method. Result = call to

Re: Case-Insensitive Sorting of Multi-Dimensional Lists

2007-06-08 Thread Simon Brunning
On 6/8/07, Joe [EMAIL PROTECTED] wrote: Now, I would like to be able to specify which index to sort by. I am not able to pass in external variables like: List.sort(key=lambda el: el[indexNumber].lower()) Why ever not? -- Cheers, Simon B. [EMAIL PROTECTED]

RE: Case-Insensitive Sorting of Multi-Dimensional Lists

2007-06-08 Thread Joe
Now, I would like to be able to specify which index to sort by. I am not able to pass in external variables like: List.sort(key=lambda el: el[indexNumber].lower()) Why ever not? Sorry, I should have written back with my findings. I had run into the problem described in this email:

Re: The Concepts and Confusions of Prefix, Infix, Postfix and Fully Functional Notations

2007-06-08 Thread [EMAIL PROTECTED]
How Purely Nested Notation Limits The Language's Utility [The full HTML formatted article is available at: http://xahlee.org/UnixResource_dir/writ/notations.html ] 2007-05-03 There is a common complain by programers about lisp's notation, of nested parenthesis, being unnatural or difficult to

Re: launching default browser

2007-06-08 Thread half . italian
On Jun 8, 8:41 am, alf [EMAIL PROTECTED] wrote: Hi, I wonder how to launch from python default Windows browser? In fact I have the same question for Linux. thx in advancve, -- alf For posterity... On a mac [sean:~] sean% open http://www.google.com ~Sean --

Re: Splitting SAX results

2007-06-08 Thread IamIan
Well SAX isn't the problem... maybe I should repost this with a different title. The SAX part works just as I want, but the results I get back need to be manipulated. No matter what I try I can't split a result like 'Title 1:Description' on the colon without getting an IndexError. Ideas anyone?

Re: Tkinter custom drawing

2007-06-08 Thread James Stroud
Xavier Bérard wrote: from Tkinter import Invisiblecanvas ? The whole web never mentions this Invisiblecanvas. Do you have anything alike to share ? ;) Xavier I figured that if you were sincere, you'd call me on this one. -- http://mail.python.org/mailman/listinfo/python-list

Re: How to use TLS lite

2007-06-08 Thread Jean-Paul Calderone
On Sat, 9 Jun 2007 05:58:41 +1000 (EST), Mr SZ [EMAIL PROTECTED] wrote: I'm using tls lite to send mail using gmail's smtp.This is what I've done: from tlslite.api import * import tlslite.integration.SMTP_TLS connection= tlslite.integration.SMTP_TLS.SMTP_TLS('smtp.gmail.com',587)

Re: Case-Insensitive Sorting of Multi-Dimensional Lists

2007-06-08 Thread mosscliffe
On 8 Jun, 16:39, Marc 'BlackJack' Rintsch [EMAIL PROTECTED] wrote: In [EMAIL PROTECTED], mosscliffe wrote: I have tried the following, for a one dimensional list and it works, but I can not get my head around this lambda. How would this be written, without the lamda ? Well ``lambda``\s

Re: Bragging about Python (8 queens)

2007-06-08 Thread Steve Howell
--- Paul McGuire [EMAIL PROTECTED] wrote: So I'm throwing down the gauntlet--can somebody write a short program (maybe 10 to 20 lines) where you solve a problem more simply than a similar non-generator-using solution would solve it? Maybe something like Eight Queens? Well, I

Re: converting an int to a string

2007-06-08 Thread John Machin
On Jun 9, 1:40 am, Sean Farrow [EMAIL PROTECTED] wrote: Hi: I have the folling code: def parseTime(self, time): minutes =int(float(time)/60) seconds =int(float(time)-minutes*60) minutes =str(minutes) seconds

Dealing with dictionary like strings

2007-06-08 Thread Mr SZ
Hello all, I'm using the urllib module to fetch pages from the web.The returned response is in the structure of a dictionary .For eg: {:,label: [ ] ,torrents: [ [F0666BDCCBFD01A52535759C044485E2E1CCE3C3,136,AAA,1250164864,651,646185088,606208,0,0,0,-1,,0,0,0,0,33564,7,342884352],

Could someone show me a sample how to flush the socket sending buffer? Thanks a lot.

2007-06-08 Thread mike
I have called the setsockopt() to set no delay after connecting like this way: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect(('192.168.10.1', 21980)) s.setsockopt(socket.SOL_TCP, socket.TCP_NODELAY, 0) s.send([EMAIL PROTECTED])

Re: Case-Insensitive Sorting of Multi-Dimensional Lists

2007-06-08 Thread Ben Finney
mosscliffe [EMAIL PROTECTED] writes: I have tried the following, for a one dimensional list and it works, but I can not get my head around this lambda. How would this be written, without the lamda ? mylist = ['Fred','bill','PAUL','albert'] mylist.sort(key=lambda el: el.lower()) Here's a

Re: Tkinter custom drawing

2007-06-08 Thread James Stroud
Xavier Bérard wrote: Now, the problem, is that I have already plenty of widgets on my screen. I just want to draw over them, which is a bit difficult in my comprehension of things. What are you trying to achieve by drawing over widgets? Want I want to do is a sort of GUI builder for

Re: Splitting SAX results

2007-06-08 Thread Jerry Hill
On 6/8/07, IamIan [EMAIL PROTECTED] wrote: Well SAX isn't the problem... maybe I should repost this with a different title. The SAX part works just as I want, but the results I get back need to be manipulated. No matter what I try I can't split a result like 'Title 1:Description' on the colon

Re: Working with fixed format text db's

2007-06-08 Thread Ben Finney
Neil Cerutti [EMAIL PROTECTED] writes: I was hoping for a module that provides a way for me to specify a fixed file format, along with some sort of interface for writing and reading files that are in said format. Isn't that done by the 'struct' module

Re: The Concepts and Confusions of Prefix, Infix, Postfix and Fully Functional Notations

2007-06-08 Thread J�rgen Exner
[EMAIL PROTECTED] wrote: [nothing relevant to Perl] Oh no, it is back. Did your ISP finally cancel your old account or why are you switching to a new address? Don't try to disguise yourself. Your 'contributions' can easily be identified no matter what pseudonym you are using. ***PLONK AGAIN***

Re: interating over single element array

2007-06-08 Thread Basilisk96
On Jun 8, 11:54 am, T. Crane [EMAIL PROTECTED] wrote: any suggestions are appreciated, Yes, don't try iterating over objects that are not iterable. ;-) Ah, yes... I hadn't thought of that :) thanks, trevis What you *can* do is iterating over lists, tuples or other iterables with

Re: Bragging about Python

2007-06-08 Thread Richard Jones
Steve Howell wrote: --- Szabolcs Nagy [EMAIL PROTECTED] wrote: actually i don't like when a tutorial uses over complicated cute names if the context is obvious (fibonacci) then we don't need to add 'parent_rabbits' and such identifiers I still prefer the use of rabbits, but I don't mind

Re: Working with fixed format text db's

2007-06-08 Thread Jeremy C B Nicoll
Neil Cerutti [EMAIL PROTECTED] wrote: On 2007-06-08, Jeremy C B Nicoll [EMAIL PROTECTED] wrote: Neil Cerutti [EMAIL PROTECTED] wrote: Luckily, the output format has not changed yet, so issues with maintaining the above haven't arisen. The problem surely is that when you want to change

DAO and Access97 WHERE clause fails

2007-06-08 Thread v.davis2
Hi all, I am attempting to use Access97 as the database to hold the results of a python script. I seem to be able to make simple SELECT clauses work (like SELECT * FROM TableName), but have not been able to figure out how to add a WHERE clause to that (e.g., SELECT * FROM TableName WHERE

RE: Obtaining hte currently running script under windows

2007-06-08 Thread Ryan Ginstrom
On Behalf Of Sean Farrow Is there any way to obtain the full path to the currently running script under win32? I am using the pythonw.exe file is that helps. Sean. Current working directory is not always reliable. There is a __file__ variable set if python.exe runs your script. import os

Re: DAO and Access97 WHERE clause fails

2007-06-08 Thread John Machin
On Jun 9, 10:17 am, v.davis2 [EMAIL PROTECTED] wrote: Hi all, I am attempting to use Access97 as the database to hold the results of a python script. I seem to be able to make simple SELECT clauses work (like SELECT * FROM TableName), but have not been able to figure out how to add a WHERE

Re: Working with fixed format text db's

2007-06-08 Thread John Machin
On Jun 9, 7:55 am, Jeremy C B Nicoll [EMAIL PROTECTED] wrote: Neil Cerutti [EMAIL PROTECTED] wrote: On 2007-06-08, Jeremy C B Nicoll [EMAIL PROTECTED] wrote: Neil Cerutti [EMAIL PROTECTED] wrote: Luckily, the output format has not changed yet, so issues with maintaining the above

Re: Working with fixed format text db's

2007-06-08 Thread Frank Swarbrick
Neil Cerutti wrote: The underlying problem, of course, is the archaic flat-file format with fixed-width data fields. Even the Department of Education has moved on to XML for most of it's data files, which are much simpler for me to parse. XML easier to parse than fixed position file. Wow!

Re: Could someone show me a sample how to flush the socket sending buffer? Thanks a lot.

2007-06-08 Thread Jean-Paul Calderone
On Fri, 08 Jun 2007 15:36:30 -0700, mike [EMAIL PROTECTED] wrote: I have called the setsockopt() to set no delay after connecting like this way: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect(('192.168.10.1', 21980)) s.setsockopt(socket.SOL_TCP,

PythonS?

2007-06-08 Thread Michel Claveau
Hi! Python, Iron-Python, Jython, StackLess-Python, Monty-Python, Movable-Python, etc. Shouldn't add a S to the end of Python? See: http://www.jfwilliam.com/Sites/1473/Python.jpg The fact of adding a S could constitute a PEP. for classification, I propose: PEP'S -- @-salutations

Re: The Concepts and Confusions of Prefix, Infix, Postfix and Fully Functional Notations

2007-06-08 Thread Twisted
On Jun 8, 7:30 pm, Jürgen Exner [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: [nothing relevant to Perl] Perl?? Perl is even less relevant to Java than the original post, which admittedly has some connection to pretty much all programming languages. (Perl, on the other hand, has no

Gzip - gunzip using zlib

2007-06-08 Thread flebber
Hi Can anyone show me a working example of how to use gzip to decompress a file. I have read the docs at python.org and had many goes at it but just can't get it to work. Cheers flebber -- http://mail.python.org/mailman/listinfo/python-list

Re: Gzip - gunzip using zlib

2007-06-08 Thread Paul Rubin
flebber [EMAIL PROTECTED] writes: Hi Can anyone show me a working example of how to use gzip to decompress a file. I have read the docs at python.org and had many goes at it but just can't get it to work. Untested in this instance, but this is how I usually do it: import gzip z =

Re: read xml file from compressed file using gzip

2007-06-08 Thread Gabriel Genellina
En Fri, 08 Jun 2007 10:00:58 -0300, flebber [EMAIL PROTECTED] escribió: I will, baby steps at the moment for me at the moment though as I am only learning and can't get gzip to work Try reading some tutorial from http://wiki.python.org/moin/BeginnersGuide -- Gabriel Genellina --

Re: Working with fixed format text db's

2007-06-08 Thread [EMAIL PROTECTED]
On Jun 8, 6:18?pm, Ben Finney [EMAIL PROTECTED] wrote: Neil Cerutti [EMAIL PROTECTED] writes: I was hoping for a module that provides a way for me to specify a fixed file format, along with some sort of interface for writing and reading files that are in said format. Isn't that done by

VIM editor question

2007-06-08 Thread David
Is anyone in the group familiar with the VIM editor? I rather like it but any time I right click on a file and select Edit with Vim It opens the file in a rather ugly default color scheme. I'd love to know how to make it automatically open files I select in my favorite color scheme rather

Python's only one way to do it philosophy isn't good?

2007-06-08 Thread WaterWalk
I've just read an article Building Robust System by Gerald Jay Sussman. The article is here: http://swiss.csail.mit.edu/classes/symbolic/spring07/readings/robust-systems.pdf In it there is a footprint which says: Indeed, one often hears arguments against building exibility into an engineered sys-

Re: Dealing with dictionary like strings

2007-06-08 Thread Gabriel Genellina
En Fri, 08 Jun 2007 19:23:38 -0300, Mr SZ [EMAIL PROTECTED] escribió: I'm using the urllib module to fetch pages from the web.The returned response is in the structure of a dictionary .For eg: {:,label: [ ] ,torrents: [

[ python-Feature Requests-1733259 ] ZipFile CallBack Needed...

2007-06-08 Thread SourceForge.net
Feature Requests item #1733259, was opened at 2007-06-08 09:54 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=355470aid=1733259group_id=5470 Please note that this message will contain a

[ python-Bugs-1733085 ] sqlite3 module trigger problem

2007-06-08 Thread SourceForge.net
Bugs item #1733085, was opened at 2007-06-07 23:36 Message generated for change (Comment added) made by ghaering You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733085group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733134 ] sqlite3.dll cannot be relocated

2007-06-08 Thread SourceForge.net
Bugs item #1733134, was opened at 2007-06-08 01:15 Message generated for change (Comment added) made by ghaering You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733134group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733085 ] sqlite3 module trigger problem

2007-06-08 Thread SourceForge.net
Bugs item #1733085, was opened at 2007-06-07 23:36 Message generated for change (Comment added) made by ghaering You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733085group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1732686 ] Built-in open function fail. Too many file open

2007-06-08 Thread SourceForge.net
Bugs item #1732686, was opened at 2007-06-07 18:28 Message generated for change (Comment added) made by alexteo21 You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1732686group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1645148 ] MIME renderer: wrong header line break with long subject?

2007-06-08 Thread SourceForge.net
Bugs item #1645148, was opened at 2007-01-26 11:04 Message generated for change (Comment added) made by kxroberto You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1645148group_id=5470 Please note that this message will contain a full copy of the comment

[issue1026] Test issue, to report@

2007-06-08 Thread Erik Forsberg
Erik Forsberg added the comment: A change note on a test issue. And hello to the python-bugs list! :-) __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1026 __ ___

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___ Python-bugs-list mailing list Unsubscribe:

[ python-Bugs-1733509 ] Modules/ld_so_aix needs to strip path off of whichcc call

2007-06-08 Thread SourceForge.net
Bugs item #1733509, was opened at 2007-06-08 08:52 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733509group_id=5470 Please note that this message will contain a full copy of

[ python-Bugs-1733493 ] AIX Modules/unicodedata.c does not build

2007-06-08 Thread SourceForge.net
Bugs item #1733493, was opened at 2007-06-08 08:45 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733493group_id=5470 Please note that this message will contain a full copy of

[ python-Bugs-1733488 ] AIX Objects/buffereobject.c does not build on AIX

2007-06-08 Thread SourceForge.net
Bugs item #1733488, was opened at 2007-06-08 08:42 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733488group_id=5470 Please note that this message will contain a full copy of

[ python-Bugs-1733484 ] Solaris 64 bit LD_LIBRARY_PATH_64 needs to be set

2007-06-08 Thread SourceForge.net
Bugs item #1733484, was opened at 2007-06-08 08:40 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733484group_id=5470 Please note that this message will contain a full copy of

[issue1029] session error

2007-06-08 Thread Martin v. Löwis
Changes by Martin v. Löwis: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1029 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: -- files: sex-stories.html severity: normal status: open title: yahoo type: rfe __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___

[issue1028] Art

2007-06-08 Thread artleafoll
Changes by artleafoll: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1028 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1028] Art

2007-06-08 Thread artleafoll
New submission from artleafoll: behavior activity -- files: test.html messages: 51800 nosy: artleafoll severity: normal status: open title: Art type: behavior __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1028

[issue1027] base64.urlsafe_b64encode() shouldn't use the = character

2007-06-08 Thread devel
Changes by devel: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1027 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1027] base64.urlsafe_b64encode() shouldn't use the = character

2007-06-08 Thread onlinestocktrading
Changes by onlinestocktrading: -- components: +Interpreter Core -Windows __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1027 __ ___ Python-bugs-list mailing list

[issue1027] base64.urlsafe_b64encode() shouldn't use the = character

2007-06-08 Thread onlinestocktrading
Changes by onlinestocktrading: -- files: soma.html severity: normal status: open title: base64.urlsafe_b64encode() shouldn't use the = character type: rfe __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1027 __

Test 2

2007-06-08 Thread tracker
___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

[issue1023] Buy Tramadol online

2007-06-08 Thread A.M. Kuchling
A.M. Kuchling added the comment: Closing this issue. -- nosy: +amk resolution: - invalid status: open - closed __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1023 __

[issue1025] Test issue

2007-06-08 Thread devel
devel added the comment: Minor test. -- nosy: +devel __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1025 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1023] Buy Tramadol online

2007-06-08 Thread Terry Jan. Reedy
Changes by Terry Jan. Reedy: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1023 __ ___ Python-bugs-list mailing list Unsubscribe:

using urllib to have an upload status bar.

2007-06-08 Thread shirish agarwal
Hi all, Before I start, please know that I'm no developer, just a user. We have a bug-reporting system in ubuntu called apport. Apparently apport uses a python library called urllib. As of now, apport does a bouncing bar while uploading which doesn't give the user idea as to how much is

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___ Python-bugs-list mailing list Unsubscribe:

[issue1030] yahoo

2007-06-08 Thread step
Changes by step: __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1030 __ ___ Python-bugs-list mailing list Unsubscribe:

[ python-Bugs-1733532 ] HP automatic build of zlib

2007-06-08 Thread SourceForge.net
Bugs item #1733532, was opened at 2007-06-08 09:04 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733532group_id=5470 Please note that this message will contain a full copy of

[ python-Bugs-1733513 ] zlib configure behaves differently than main configure

2007-06-08 Thread SourceForge.net
Bugs item #1733513, was opened at 2007-06-08 08:56 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733513group_id=5470 Please note that this message will contain a full copy of

[ python-Bugs-1733493 ] AIX Modules/unicodedata.c does not build

2007-06-08 Thread SourceForge.net
Bugs item #1733493, was opened at 2007-06-08 22:45 Message generated for change (Comment added) made by perky You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733493group_id=5470 Please note that this message will contain a full copy of the comment thread,

[ python-Bugs-1733518 ] setup.py incorrect for HP

2007-06-08 Thread SourceForge.net
Bugs item #1733518, was opened at 2007-06-08 08:58 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733518group_id=5470 Please note that this message will contain a full copy of

[ python-Bugs-1733536 ] windows 64 bit builds

2007-06-08 Thread SourceForge.net
Bugs item #1733536, was opened at 2007-06-08 09:07 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733536group_id=5470 Please note that this message will contain a full copy of

[ python-Bugs-1733523 ] HP shared object option

2007-06-08 Thread SourceForge.net
Bugs item #1733523, was opened at 2007-06-08 09:00 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733523group_id=5470 Please note that this message will contain a full copy of

[ python-Bugs-1733544 ] HP 64 bit does not run

2007-06-08 Thread SourceForge.net
Bugs item #1733544, was opened at 2007-06-08 09:13 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733544group_id=5470 Please note that this message will contain a full copy of

[ python-Bugs-1733546 ] AIX shared object build of python 2.5 does not work

2007-06-08 Thread SourceForge.net
Bugs item #1733546, was opened at 2007-06-08 09:14 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733546group_id=5470 Please note that this message will contain a full copy of

[ python-Bugs-1733513 ] zlib configure behaves differently than main configure

2007-06-08 Thread SourceForge.net
Bugs item #1733513, was opened at 2007-06-08 15:56 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733513group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733546 ] AIX shared object build of python 2.5 does not work

2007-06-08 Thread SourceForge.net
Bugs item #1733546, was opened at 2007-06-08 16:14 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733546group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733544 ] HP 64 bit does not run

2007-06-08 Thread SourceForge.net
Bugs item #1733544, was opened at 2007-06-08 16:13 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733544group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733536 ] windows 64 bit builds

2007-06-08 Thread SourceForge.net
Bugs item #1733536, was opened at 2007-06-08 16:07 Message generated for change (Settings changed) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733536group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733085 ] sqlite3 module trigger problem

2007-06-08 Thread SourceForge.net
Bugs item #1733085, was opened at 2007-06-07 23:36 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733085group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1701409 ] Segfault in c_char_p of ctypes

2007-06-08 Thread SourceForge.net
Bugs item #1701409, was opened at 2007-04-16 12:45 Message generated for change (Comment added) made by theller You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1701409group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733523 ] HP shared object option

2007-06-08 Thread SourceForge.net
Bugs item #1733523, was opened at 2007-06-08 16:00 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733523group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733532 ] HP automatic build of zlib

2007-06-08 Thread SourceForge.net
Bugs item #1733532, was opened at 2007-06-08 16:04 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733532group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733536 ] windows 64 bit builds

2007-06-08 Thread SourceForge.net
Bugs item #1733536, was opened at 2007-06-08 09:07 Message generated for change (Comment added) made by bhochste You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733536group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733518 ] setup.py incorrect for HP

2007-06-08 Thread SourceForge.net
Bugs item #1733518, was opened at 2007-06-08 15:58 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733518group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733509 ] Modules/ld_so_aix needs to strip path off of whichcc call

2007-06-08 Thread SourceForge.net
Bugs item #1733509, was opened at 2007-06-08 15:52 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733509group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733484 ] Solaris 64 bit LD_LIBRARY_PATH_64 needs to be set

2007-06-08 Thread SourceForge.net
Bugs item #1733484, was opened at 2007-06-08 15:40 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733484group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733544 ] HP 64 bit does not run

2007-06-08 Thread SourceForge.net
Bugs item #1733544, was opened at 2007-06-08 09:13 Message generated for change (Comment added) made by bhochste You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733544group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1732686 ] Built-in open function fail. Too many file open

2007-06-08 Thread SourceForge.net
Bugs item #1732686, was opened at 2007-06-07 12:28 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1732686group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1732557 ] T_LONGLONG chokes on ints

2007-06-08 Thread SourceForge.net
Bugs item #1732557, was opened at 2007-06-07 06:23 Message generated for change (Comment added) made by loewis You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1732557group_id=5470 Please note that this message will contain a full copy of the comment

[ python-Bugs-1733518 ] setup.py incorrect for HP

2007-06-08 Thread SourceForge.net
Bugs item #1733518, was opened at 2007-06-08 08:58 Message generated for change (Comment added) made by bhochste You can respond by visiting: https://sourceforge.net/tracker/?func=detailatid=105470aid=1733518group_id=5470 Please note that this message will contain a full copy of the comment

<    1   2   3   >