[issue37544] Test hang causes --enable-optimizations build to hang

2019-08-08 Thread Jarek Zgoda
Jarek Zgoda added the comment: Not really. I tried with limited test list and I keep getting the exact same failure in test_logging, moreover build passes all tests on all other machines we have. I guess this is some weird isolated issue not related to Python at all so I'm closing

[issue37544] Test hang causes --enable-optimizations build to hang

2019-07-30 Thread Jarek Zgoda
Change by Jarek Zgoda : Added file: https://bugs.python.org/file48519/test.pythoninfo.libressl-2.9.2.txt ___ Python tracker <https://bugs.python.org/issue37544> ___ ___

[issue37544] Test hang causes --enable-optimizations build to hang

2019-07-23 Thread Jarek Zgoda
Jarek Zgoda added the comment: Thank you for the information. The build system is standard Ubuntu 18.04.2 and openssl is system provided. I will try to build Python against other openssl versions, as well against libressl. -- ___ Python tracker

[issue37544] Multiple test failures during build

2019-07-11 Thread Jarek Zgoda
Jarek Zgoda added the comment: make test output from unoptimized build with --disable-shared --prefix=/opt/python-3.7.4 -- Added file: https://bugs.python.org/file48468/3.7.4-test_output.txt ___ Python tracker <https://bugs.python.org/issue37

[issue37544] Multiple test failures during build

2019-07-11 Thread Jarek Zgoda
Jarek Zgoda added the comment: test.pythoninfo output -- Added file: https://bugs.python.org/file48467/test.pythoninfo.txt ___ Python tracker <https://bugs.python.org/issue37

[issue37544] Multiple test failures during build

2019-07-10 Thread Jarek Zgoda
New submission from Jarek Zgoda : I'm trying to build Python-3.7.4 from release tarball. Configure line: ./configure --prefix=/opt/python-3.7.4 --disable-shared --enable-optimizations System: Ubuntu 18.04.2 amd64, 4.15.0-54-generic #58-Ubuntu SMP Build fails. -- components: Build

Re: Assignment and comparison in one statement

2008-05-24 Thread Jarek Zgoda
at all. Tell us your objective, so we could show you proper way (tm). ;) -- Jarek Zgoda http://zgodowie.org/ We read Knuth so you don't have to - Tim Peters -- http://mail.python.org/mailman/listinfo/python-list

Re: Variable by label

2008-05-16 Thread Jarek Zgoda
be done. I guess it is achievable. getattr(object, attrname, default) -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: pygtk + threading.Timer

2008-04-14 Thread Jarek Zgoda
then they occur. Thanks in advance See gobject.timeout_add documentation in pygtk reference -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: How to make a command line basd interactive program?

2008-04-11 Thread Jarek Zgoda
, - , and then you can execute any commands what you defined in script. Now, in python, are there any common way(class) to finish this work? or does anybody has a example to do that? See module cmd and class Cmd there. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice

Re: is Pylons alive?

2008-04-09 Thread Jarek Zgoda
for if I want to come back to Python and develop MVC web apps? Latest commit is dated 2008-04-06, so I suppose it's alive, just no release was done in last time. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http

Re: Parsing locale specific dates, currency, numbers

2008-04-09 Thread Jarek Zgoda
on the basis of a specified locale? In other words, a module that will reverse the outputs of locale on a locale specific basis. There are some attempts in Babel (http://babel.edgewall.org/), but the devs themselves claim the routines are incomplete. You might want to check it, though. -- Jarek Zgoda

Re: csv.DictReader and unicode

2008-04-07 Thread Jarek Zgoda
. Reader works with byte strings, not unicode objects. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: object-relational mappers

2008-04-03 Thread Jarek Zgoda
, they save me lot of work. The problem is, all of them are very resource hungry, processing resultset of 300k objects one by one can effectively kill most of commodity systems. This is where raw SQL comes in handy. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read

Re: Why does python behave so? (removing list items)

2008-03-26 Thread Jarek Zgoda
, 4, 5] Shouldn't k remain the same? No further comments on this. -- Jarek Zgoda http://zgodowie.org/ We read Knuth so you don't have to - Tim Peters -- http://mail.python.org/mailman/listinfo/python-list

Re: sendmail should throw an exception but does not

2008-03-25 Thread Jarek Zgoda
by my mail server. Your local smtpd accepted the message for delivery, so everythong seems to be OK. Following communication takes place between mail servers, so your program has no possibility to know anything went wrong. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice

Re: sendmail should throw an exception but does not

2008-03-25 Thread Jarek Zgoda
an email. You can send a big THANKYOU to spammers, because their activity caused nearly all mail server admins to disable VRFY command that is supposed to do what you need. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim

Re: PyGTK localisation on Win32

2008-03-25 Thread Jarek Zgoda
=True) Be aware, that you can not change the locale setting from the command line like you do on Linux. -- Jarek Zgoda http://zgodowie.org/ We read Knuth so you don't have to - Tim Peters -- http://mail.python.org/mailman/listinfo/python-list

Get actual call signature?

2008-03-18 Thread Jarek Zgoda
not feasible (or is simply impossible), I'll happily throw this idea and look for another one. ;) -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: Get actual call signature?

2008-03-18 Thread Jarek Zgoda
[EMAIL PROTECTED] pisze: On Mar 18, 5:40 am, Jarek Zgoda [EMAIL PROTECTED] wrote: Say, I have a function defined as: def fun(arg_one, arg_two='x', arg_three=None): pass Is there any way to get actual arguments that will be effectively used when I call this function in various ways

Re: PyCon Feedback and Volunteers (Re: Pycon disappointment)

2008-03-17 Thread Jarek Zgoda
registration fee, so the most intimidating costs (for me at least) is accomodation and travel. I mean, lowering the fee would be nice, but not essential to me. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http

Re: List mutation method gotcha - How well known?

2008-03-14 Thread Jarek Zgoda
can't prove by ignorance) I think in Python there's no notion of void return type. Deliberate choice to return None for functions that modify objects in place seems to be OK as long as it is used consistently and documented. Which is the case. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL

Re: Installing Python2.4 on RHEL4?

2008-03-14 Thread Jarek Zgoda
Python2.4 for RHEL4 x64? If you would not find a binary Python 2.4 package, you can always build your own and package it. Why not? -- Jarek Zgoda http://zgodowie.org/ We read Knuth so you don't have to - Tim Peters -- http://mail.python.org/mailman/listinfo/python-list

Re: URLlib2?

2008-02-28 Thread Jarek Zgoda
not return 404 response, but this works only with HTTP/HTTPS urls. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: URLlib2?

2008-02-28 Thread Jarek Zgoda
if it does not return 404 response, but this works only with HTTP/HTTPS urls. It's unlikely that any other type of URL would result in the browser sending a Referer: header. Right, perfectly valid assumption. ;) I am bit too defensive today. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED

Re: is this data structure build-in or I'll have to write my own class?

2008-02-20 Thread Jarek Zgoda
cann't get your use case. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: Garbage collection

2008-02-19 Thread Jarek Zgoda
is destroyed upon program exit), the CPython docs read that this is the case for Python too. Is this behaviour standard for all VM implementations or is implementation-dependent (CPython, Jython, IronPython)? -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read

Re: Garbage collection

2008-02-19 Thread Jarek Zgoda
assumption that __del__ has the same purpose (and same limitations, i.e. the are not guaranteed to be fired) as Java finalizer methods? -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman

Re: ANN: NUCULAR B3 Full text indexing (now on Win32 too)

2008-02-14 Thread Jarek Zgoda
feature-by-feature? -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: ANN: NUCULAR B3 Full text indexing (now on Win32 too)

2008-02-14 Thread Jarek Zgoda
a chance to look at the new release. I don't know what Sphinx is. http://www.sphinxsearch.com/ -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: Write ooxml .ods (spreadsheat) from python?

2008-02-13 Thread Jarek Zgoda
: 2.5 Bugs: mailto:[EMAIL PROTECTED] Origin: Ubuntu Task: ubuntu-desktop, kubuntu-desktop, edubuntu-desktop, gobuntu-desktop -- Jarek Zgoda http://zgodowie.org/ We read Knuth so you don't have to - Tim Peters -- http://mail.python.org/mailman/listinfo/python-list

Re: Help with jabber client in wx

2008-02-11 Thread Jarek Zgoda
. What am I doing wrong in the xmpppy classes/methods? If you want to use xmppy, I'd suggest looking at Gajim team modifications to original source (http://gajim.org/). These guys did a whole lot of work making xmppy more standards compliant and fixing bugs. -- Jarek Zgoda http://zgodowie.org/ We

Re: Updating documents in PyLucene

2008-01-31 Thread Jarek Zgoda
this un-stored indexed data from the old document into the new? I think the answer is no, there has to be some way of identifying records that have to be deleted. If you do not store any document UID, you are out of luck. Anyway, you may get some hints on lucene mailing list. -- Jarek Zgoda

Set ulimit when using subprocess.Popen?

2008-01-28 Thread Jarek Zgoda
Hi, all, anybody has an idea on how to set ulimit (-v in my case, linux) for process started using subprocess.Popen? -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python

Re: Set ulimit when using subprocess.Popen?

2008-01-28 Thread Jarek Zgoda
Rob Wolfe napisał(a): Jarek Zgoda napisał(a): Hi, all, anybody has an idea on how to set ulimit (-v in my case, linux) for process started using subprocess.Popen? What about: from subprocess import call call('ulimit -v 1000 ulimit -v ls', shell=True) subprocess.Popen('ulimit -v

Re: optional static typing for Python

2008-01-27 Thread Jarek Zgoda
Russ P. pisze: I noticed that Guido has expressed further interest in static typing three or four years ago on his blog. Does anyone know the current status of this project? Thanks. I thought it was april fools joke? -- Jarek Zgoda http://zgodowie.org/ We read Knuth so you don't have

Re: optional static typing for Python

2008-01-27 Thread Jarek Zgoda
is usual theme of april fools jokes. -- Jarek Zgoda http://zgodowie.org/ We read Knuth so you don't have to - Tim Peters -- http://mail.python.org/mailman/listinfo/python-list

Re: Why not 'foo = not f' instead of 'foo = (not f or 1) and 0'?

2008-01-23 Thread Jarek Zgoda
. Twisted sems to be perverted to the root. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: [python] How to detect a remote webpage is accessible? (in HTTP)

2008-01-18 Thread Jarek Zgoda
the entire page. Could you give me a good and fast solution? Thank you. Issue HTTP HEAD request. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: MySQL-python-1.2.2 install with no mysql

2008-01-15 Thread Jarek Zgoda
, in mysql_config raise EnvironmentError, %s not found % mysql_config.path EnvironmentError: mysql_config not found [EMAIL PROTECTED] MySQL-python-1.2.2]# How can I install MySQL-python-1.2.2 without installing MySQL??? In short: without installing client libraries you cann't. -- Jarek

Re: MySQL-python-1.2.2 install with no mysql

2008-01-15 Thread Jarek Zgoda
to it... : You need to install -dev package too. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: Pet Store

2008-01-08 Thread Jarek Zgoda
Java Pet Store apps, I think that would help me to fill up some gaps in my learning process. Does anybody know any app like that? TurboGears and Pylons both have wiki tutorials. Django has poll tutorial. There are plenty others on the web. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED

Re: Question on os.tempnam() vulnerability

2008-01-05 Thread Jarek Zgoda
it's all impossible to get only file name and feel safe. You have to have both file name and a file object opened exclusively for you. Any other way you'll get a possible race condition. -- Jarek Zgoda http://zgodowie.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: standalone python web server

2007-12-27 Thread Jarek Zgoda
image file, different file type(like FLV) .. etc. Any recommendation or tools suggested for me? You'd have to write it on your own anyway if you do not want to use ready-made server software like lighttpd or nginx. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101

Re: lotus nsf to mbox

2007-12-15 Thread Jarek Zgoda
ago. -- Jarek Zgoda http://zgodowie.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: High speed web services

2007-12-14 Thread Jarek Zgoda
herbasher pisze: How do I built highly available and lighting fast Python webservice? Write optimized code and use it in conjunction with twisted.web. -- Jarek Zgoda http://zgodowie.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Why did no one tell me about import antigravity?

2007-12-05 Thread Jarek Zgoda
you. XKCD is greatly undervaluated. Overall, it's very intelligent. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

[announce] WARPY, Nov. 29, Warsaw, Poland

2007-11-26 Thread Jarek Zgoda
. See you there! -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: Add speller to Python application

2007-11-26 Thread Jarek Zgoda
helzer napisał(a): I need to add spell checking to my Python application (for Windows). Any ideas on where to start? There is Python2.4 compatible binary of aspell-python available at http://www.wmula.republika.pl/proj/aspell-python/index-c.html -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL

Re: mimicking a file in memory

2007-11-20 Thread Jarek Zgoda
the file in memory. Any ideas on how to do this? Try with StringIO/cStringIO, these modules are supposed to give you in-memory objects compatible with file object interface. -- Jarek Zgoda http://zgodowie.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Excellent sci-fi novel featuring Python

2007-11-17 Thread Jarek Zgoda
) until recently. If the book was written around 2005 or even 2004... -- Jarek Zgoda http://zgodowie.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: pygobject replacement?

2007-11-14 Thread Jarek Zgoda
. threads. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: Moving from java to python.

2007-11-12 Thread Jarek Zgoda
[EMAIL PROTECTED] napisał(a): def getConnected(self): return self._connected No need to use accessors. Just plain attribute lookup is sufficient. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters

Re: Some pythonic suggestions for Python

2007-11-08 Thread Jarek Zgoda
Frank Samuelson pisze: foo = function(x,y) x+y*2 # Example S language code Ugly. -- Jarek Zgoda http://zgodowie.org/ -- http://mail.python.org/mailman/listinfo/python-list

Re: dynamic invoke

2007-10-22 Thread Jarek Zgoda
. The abstraction of function pointer is also wrong here, it's a reference to an object (any object, not just function). The result might seems similar, but works quite differently. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim

Re: calling a function from string

2007-10-22 Thread Jarek Zgoda
. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: DIAGNOSIS: Racism moves back to Denmark from South Africa

2007-10-19 Thread Jarek Zgoda
Poles there. The rivers would flow with blood. Leaving blood flowing is their well-known national sport. -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: How to use module audit-lib ?

2007-10-19 Thread Jarek Zgoda
Sébastien Weber napisał(a): I've installed the python-audit-lib module but there's no documentation. Does someone know how to use it ? I don't know this package, but why did you install it? Maybe somebody in Überwald knows its usage? -- Jarek Zgoda http://jpa.berlios.de/ -- http

Re: dynamic invoke

2007-10-19 Thread Jarek Zgoda
it have some build-in function to do it? foo = getattr(module_or_object, 'function_name') foo() -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: Python implements interface equivalent?

2007-10-04 Thread Jarek Zgoda
. I'd love to hear how I can do this in Python. I am sure you wouldn't need interfaces to do such things in Python. Duck typing is how we call this feature. :) -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http

Re: Django for database driven web application is OK?

2007-10-03 Thread Jarek Zgoda
in building CMS-like apps but is not a framework for building CMS-like apps. For example, the largest community site in Poland http://grono.net/ is built with Django. My company does other interesting things in Django, completely unrelated to CMS/web publishing. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL

Re: Https conversation - debug?

2007-09-14 Thread Jarek Zgoda
Johny napisał(a): Is there any good sniffer for https protocol? How can be watched https conversation? Any packet sniffer will do. Then you have to decrypt the stream. ;) -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python object - XML

2007-09-03 Thread Jarek Zgoda
of) Python object(s), manipulate the instance, and save the result back to XML? Yea, use ElementTree and you'd get a bunch of nested lists of very simple objects. -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Let's Unite Against Jews and Mongrels!

2007-09-03 Thread Jarek Zgoda
Barry OGrady napisał(a): What could anyone have against mongrels? You clearly don't know how abusive ROR can be. -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: GUI and distrubution

2007-08-24 Thread Jarek Zgoda
, PyQt, and pyGTK. One of these days, someone needs to write a tutorial on distributing for the Big 3 (Linux, OSX, and Amiga--or was that last one supposed to be M$?). That would make 12 howto's (4 GUI platforms x 3 operating systems). Tedious. -- Jarek Zgoda http://jpa.berlios.de/ -- http

Re: MsiLib

2007-08-22 Thread Jarek Zgoda
and my system is screwed up somewhere? Thanks. import msilib c = msilib.OpenDatabase('test.msi', MSIDBOPEN_READONLY) I think this should read msilib.MSIDBOPEN_READONLY. -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Dies on make install

2007-08-10 Thread Jarek Zgoda
/python2.x). The module that stopped installation was exactly the same. -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Heterogeneous lists

2007-08-07 Thread Jarek Zgoda
- possibly unrelated - classes in a same list. Fact is that these instances usually share a common (implied) interface, but, well, sometimes they don't... I love my lists of classes. I know, I'll go to hell for that. -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo

Re: Determining if file is valid image file

2007-08-02 Thread Jarek Zgoda
. The reason why I'd prefer not using PIL is that I'd like to bundle such a function/module in my app. André I should have added: I'm interesting in validating the file *content* - not the filename :-) Is the module imghdr enough for your needs? -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED

Re: Determining if file is valid image file

2007-08-02 Thread Jarek Zgoda
downloaded) in many cases pass the imghdr.what() test. This function checks for patterns in files, just like file utility. -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Determining if file is valid image file

2007-08-02 Thread Jarek Zgoda
, sometimes you need more. ;) -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Where do they tech Python officialy ?

2007-07-24 Thread Jarek Zgoda
live like bums. There is only one reason to be a programmer, which is that the drive to program burns in you like a fire. But in that case don't ask how to become a programmer, because you are already one, so welcome to the ranks ;-). +1 QOTW -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL

Re: how good does PyGTK work on windows?

2007-07-16 Thread Jarek Zgoda
and on) performing bit unstable, I did not realize any instabilities. Just use package from gladewin32 project, there are separate downloads with development tools and without. Then just install pycairo, pygobject and pygtk packages from PyGTK project. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL

Re: Samodzielny program pod linuksem

2007-07-12 Thread Jarek Zgoda
just set FUT. -- Jarek Zgoda Skype: jzgoda | GTalk: [EMAIL PROTECTED] | voice: +48228430101 We read Knuth so you don't have to. (Tim Peters) -- http://mail.python.org/mailman/listinfo/python-list

Re: Reading (and writing?) audio file tags

2007-05-25 Thread Jarek Zgoda
still worked :-) Guys from QuodLibet seem still block access for MSIE users. Anyway, you may try to get Mutagen source from subversion: $ svn co http://svn.sacredchao.net/svn/quodlibet/trunk/mutagen -- Jarek Zgoda We read Knuth so you don't have to. -- http://mail.python.org/mailman/listinfo

Re: just a bug

2007-05-25 Thread Jarek Zgoda
it as a complete i. -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: alternative to eclipse [ python ide AND cvs ]

2007-05-18 Thread Jarek Zgoda
promising. -- Jarek Zgoda We read Knuth so you don't have to. -- http://mail.python.org/mailman/listinfo/python-list

Re: (Modular-)Application Framework / Rich-Client-Platform in Python

2007-05-18 Thread Jarek Zgoda
myself, but I thought, I'd ask here before diving into it. There are few GUI frameworks building on various toolkits. I used to use Kiwi for PyGTK, it's mature and stable, although the approach is not the same as, for example, Delphi. -- Jarek Zgoda We read Knuth so you don't have to. -- http

Re: (Modular-)Application Framework / Rich-Client-Platform in Python

2007-05-18 Thread Jarek Zgoda
://www.pida.co.uk/), which is built around the concept of pluggable views and services, but again, this is far from Eclipse RCP. -- Jarek Zgoda We read Knuth so you don't have to. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-18 Thread Jarek Zgoda
://www.youtube.com/results.py Server signature is usually configurable. -- Jarek Zgoda We read Knuth so you don't have to. -- http://mail.python.org/mailman/listinfo/python-list

Re: (Modular-)Application Framework / Rich-Client-Platform in Python

2007-05-18 Thread Jarek Zgoda
://wiki.eclipse.org/index.php/Rich_Client_Platform -- Jarek Zgoda We read Knuth so you don't have to. -- http://mail.python.org/mailman/listinfo/python-list

Re: (Modular-)Application Framework / Rich-Client-Platform in Python

2007-05-18 Thread Jarek Zgoda
as a set of pluggable features over common runtime. While not a mark-and-drop solution yet, it's a great leap forward in Java desktop applications. There's more to Eclipse that just IDE. ;) -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Python Web Programming - looking for examples of solid high-traffic sites

2007-05-17 Thread Jarek Zgoda
. The main reason for that is that we want to debug our own bugs, but not the bugs in our tools. I don't think you find anything even remotely resembling that idea here. Moreover, I don't think you find it elsewhere. Maybe even such tools do not exist in nature? -- Jarek Zgoda We read Knuth so

Re: Iron Python

2007-05-15 Thread Jarek Zgoda
Jon Harrop napisał(a): Anybody tried it? Me. -- Jarek Zgoda We read Knuth so you don't have to. -- http://mail.python.org/mailman/listinfo/python-list

Re: Iron Python

2007-05-15 Thread Jarek Zgoda
BartlebyScrivener napisał(a): Anybody tried it? Me. Me too. Anybody like it? Tried id, did not found any use, put on shelf. Don't know if this case fits likes or doesn't like. ;) -- Jarek Zgoda We read Knuth so you don't have to. -- http://mail.python.org/mailman/listinfo/python-list

Re: PEP 3131: Supporting Non-ASCII Identifiers

2007-05-14 Thread Jarek Zgoda
I don't have problems with some of non-latin character sets, such as greek and cyrillic (I was attending school in time when learning Russian was obligatory in Poland and later I learned Greek), there are a plenty I wouldn't be able to read, such as Hebrew, Arabic or Persian. -- Jarek Zgoda We

Re: Asyncore Help?

2007-05-14 Thread Jarek Zgoda
Daniel Nogradi napisał(a): The twisted project might also be a good place for anything related to python and networking: http://twistedmatrix.com/trac/ Twisted eats babies for breakfast, although it also kills all known germs(TM). ;) -- Jarek Zgoda We read Knuth so you don't have

Re: GUI tutorial

2007-05-14 Thread Jarek Zgoda
GUI Programming under Advanced Topics on the left. wxPython section of this tutorial seems bit outdated (the code resembles what was required in time of wxPython 2.4). Anyway, the explanation of event-driven approach is essential. -- Jarek Zgoda We read Knuth so you don't have to. -- http

Re: GUI tutorial

2007-05-14 Thread Jarek Zgoda
, most of whom have never used a command line, to use. Each of GUI frameworks/libraries has its own tutorial and some even more than one... The choice is directly related to what library you would use. -- Jarek Zgoda We read Knuth so you don't have to. -- http://mail.python.org/mailman/listinfo

Re: PEP 3131: Supporting Non-ASCII Identifiers

2007-05-13 Thread Jarek Zgoda
it comes to programming. -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: PEP 3131: Supporting Non-ASCII Identifiers

2007-05-13 Thread Jarek Zgoda
. -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Gui thread and async jobs.

2007-05-09 Thread Jarek Zgoda
idle for some time, Louie will fit perfectly as the queuing of messages will not happen. Otherwise there would be no advantage other than code simplification. And this counts always. :) -- Jarek Zgoda We read Knuth so you don't have to. -- http://mail.python.org/mailman/listinfo/python-list

Re: chdir()

2007-05-08 Thread Jarek Zgoda
that was open to it. What is wrong with the syntax? Unescaped '\' character. Try with raw string (rc:\twill) or escape it (c:\\twill). -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Cgi File Upload without Form

2007-04-30 Thread Jarek Zgoda
/form-data. Uploading files is usually done in this way, if you don't want/cann't use more sophisticated means like WebDAV (which is HTTP extension, btw). -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Asynchronous XML-RPC client library?

2007-04-29 Thread Jarek Zgoda
-- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: While we're talking about annoyances

2007-04-29 Thread Jarek Zgoda
Esperanto, and computer-parseable. Seems a better[0]_ choice for computer documentation to me. German seems to be less wordy than English, despite the fact that most of nouns is much longer. ;) -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Asynchronous XML-RPC client library?

2007-04-29 Thread Jarek Zgoda
this is a small plugin to a larger application written in C and I don't want to make such dependency. Twisted is just too large to be a dependency for a ~500 LOC (including GUI code) plugin. -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Asynchronous XML-RPC client library?

2007-04-28 Thread Jarek Zgoda
Is there anything like that? Googling yields many articles on async servers, but virtually nothing on clients. I have to talk to remote in an environment that does not allow threads... -- Jarek Zgoda http://jpa.berlios.de/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Re-ocurring Events

2007-04-27 Thread Jarek Zgoda
it as a string? In the very specific case of string formatted as above, the string comparison will give the same results as in the case of datetime objects comparison. You just have to compare the same kinds of things. ;) -- Jarek Zgoda We read Knuth so you don't have to. -- http://mail.python.org

Ann: lastfmsvc-0.9.1

2007-04-24 Thread Jarek Zgoda
operations on Last.FM metadata: * tag (track, album, artist); * recommend (track, album, artist); * add to/remove from loved (track); * ban/remove from banned (track); * remove from listened (track). Where? http://code.google.com/p/lastfmsvc/ -- Jarek Zgoda We read Knuth so you

  1   2   3   >