Re: [Python-Dev] Binary Compatibility Issue with Python v2.6.5 and v3.1.2

2010-04-20 Thread Wolfgang Langner
Hi, On 20.04.2010 14:19, Phil Thompson wrote: When I build my C++ extension on Windows (specifically PyQt with MinGW) against Python v2.6.5 it fails to run under v2.6.4. The same problem exists when building against v3.1.2 and running under v3.1.1. The error message is... ImportError: DLL load

Re: [Python-Dev] Conversion to Subversion is complete

2005-10-27 Thread Wolfgang Langner
Hello, [EMAIL PROTECTED] wrote: > martin> The Python source code repository is now converted to > martin> subversion; please feel free to start checking out new > martin> sandboxes. > > Excellent... Thanks for all the effort. Good work. I checked the http and viewcvs access and all

Re: [Python-Dev] PEP 8 updates/clarifications, function/method style

2005-12-15 Thread wolfgang . langner
Hi, >>> Too late. I don't think the diversity is all that distracting. >> I disagree. One of the things that Java got very much right was to >> specify, from the very beginning, what the preferred conventions are >> for naming conventions. (Packages in lowercase, Classes in CapWords, >> methods an

Re: [Python-Dev] C++ for CPython 3? (Re: str.count is slow)

2006-03-01 Thread Wolfgang Langner
Hello, > >should we perhaps switch to (careful use of) C++ in 3.0 ? > I can't see many advantages in moving to C++, but a lot of disadvantages: > > - Size increase, especially when we start using templates > - Performance decrease > - Problems with name mangling together with dynamic loading and c

Re: [Python-Dev] C++ for CPython 3? (Re: str.count is slow)

2006-03-05 Thread Wolfgang Langner
Hello, > >should we perhaps switch to (careful use of) C++ in 3.0 ? > I can't see many advantages in moving to C++, but a lot of disadvantages: > > - Size increase, especially when we start using templates > - Performance decrease > - Problems with name mangling together with dynamic loading and c

[Python-Dev] Bug 1184112 still valid

2006-03-17 Thread Wolfgang Langner
Hello, today I got my first real python bug. Problem is described in: Bug with ID: 1184112 http://sourceforge.net/tracker/index.php?func=detail&aid=1184112&group_id=5470&atid=105470 I use python 2.3.5 in an embedded C++ Application which uses function: PyRun_SimpleString. Is this bug still pre

Re: [Python-Dev] Py3k: Except clause syntax

2006-03-18 Thread Wolfgang Langner
Hello, what about: try: something except NameError or OtherError as e: Only a thought. -- bye by Wolfgang ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mail

Re: [Python-Dev] I'm not getting email from SF when assigned abug/patch

2006-03-28 Thread Wolfgang Langner
Hello, what about trac: http://www.edgewall.com/trac/ It is based on python and has a very good svn integration. -- bye by Wolfgang ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http

Re: [Python-Dev] I'm not getting email from SF when assignedabug/patch

2006-03-29 Thread Wolfgang Langner
Hello, > I'll just point out that Atlassian has offered us free hosting for a > Jira/Confluence solution (plus svn and other stuff we may or may not > want). I personally support this option, but I know (and accept!) that > there are differing opinions. It is a Java system. Why promote Java solu

Re: [Python-Dev] pysqlite for 2.5?

2006-03-29 Thread Wolfgang Langner
Hello, > I think short names are more more consistent with the existing naming in > the standard library. > > +1 on db.sqlite from me. same for me +1 on db.sqlite > db.sql.sqlite is another possibility, if adding something like Durus or > ZODB in the same top-level namespace could be considered

Re: [Python-Dev] I'm not getting email from SF when assignedabug/patch

2006-03-30 Thread Wolfgang Langner
Hello, On 3/29/06, Guido van Rossum <[EMAIL PROTECTED]> wrote: > On 3/29/06, Wolfgang Langner <[EMAIL PROTECTED]> wrote: > > It is a Java system. Why promote Java solutions for python ? > > I think there are good python solutions for a bug tracker and we > >

Re: [Python-Dev] gmane.comp.python.devel.3000 has disappeared

2006-04-01 Thread Wolfgang Langner
On 4/1/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Terry> For about a week, I have been reading and occasionally posting to > Terry> the new pydev-3000 mailing list via the gmane mirror > Terry> gmane.comp.lang.devel.3000. Today, it has disappeared and was > Terry> still g

Re: [Python-Dev] Dropping __init__.py requirement for subpackages

2006-04-26 Thread Wolfgang Langner
On 4/26/06, Guido van Rossum <[EMAIL PROTECTED]> wrote: > So I have a very simple proposal: keep the __init__.py requirement for > top-level pacakages, but drop it for subpackages. This should be a > small change. I'm hesitant to propose *anything* new for Python 2.5, > so I'm proposing it for 2.6

[Python-Dev] Re: [maintenance doc updates]

2005-03-30 Thread Wolfgang Langner
Hello, Fred L. Drake wrote: > The maintenance version of the documentation has been updated: > > http://www.python.org/dev/doc/maint24/ Very good. The download links under http://docs.python.org/download.html doesn't work any more. (packages not there) But 2.4.1 is not yet released, so I w

Re: [Python-Dev] Looking for Memories of Python Old-Timers

2006-05-23 Thread Wolfgang Langner
Just to remember 10 years ago was the python 1.3 release. I can't remember how long I use python but I can remember the first release I used. Use the cvs (svn) history of tags to get the date: http://svn.python.org/view/python/tags/ I hope this helps. :-) 2006/5/23, Guido van Rossum <[EMAIL PRO

Re: [Python-Dev] User's complaints

2006-07-13 Thread Wolfgang Langner
On 7/13/06, Jeroen Ruigrok van der Werven <[EMAIL PROTECTED]> wrote: > Things that struck me as peculiar is the old: > > if __name__ == "__main__": > whatever() > > This is so out of tune with the rest of python it becomes a nuisance. It is not beautiful but very useful. In Python 3000 we can

Re: [Python-Dev] Importing .pyc in -O mode and vice versa

2006-11-06 Thread Wolfgang Langner
Why not only import *.pyc files and no longer use *.pyo files. It is simpler to have one compiled python file extension. PYC files can contain optimized python byte code and normal byte code. -- bye by Wolfgang ___ Python-Dev mailing list Python-Dev@p

[Python-Dev] Win64, 64 Bit Version and 32 Bit version parallel install not possible

2007-04-20 Thread Wolfgang Langner
Hello, I tried to install the 64 Bit python version (2.5.1) and the 32 Bit version on my computer. But it is not possible because the installer complains that this version of python is already installed. Is it in general not possible to install both versions (in separate directories) ? Or is it

Re: [Python-Dev] Python developers are in demand

2007-10-16 Thread Wolfgang Langner
On 10/16/07, Wolfgang Langner <[EMAIL PROTECTED]> wrote: > On 10/15/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > > >> I wonder if we should start maintaining a list of Python developers > > >> for hire somewhere on python.org, beyond

Re: [Python-Dev] Improvements for Pathlib

2014-11-10 Thread Wolfgang Langner
Hi, some background about my pathlib usage. I use the backported version of pathlib and tried to replace the usage of path.py (also widely used library). Some features part of path.py missing in pathlib: - expanduser, expandvars, I have to use the os functions to do this. It is possible but be

Re: [Python-Dev] async/await in Python; v2

2015-04-23 Thread Wolfgang Langner
Hi, most of the time I am a silent reader but in this discussion I must step in. I use twisted and async stuff a lot over years followed development of asyncio closely. First it is good to do differentiate async coroutines from generators. So everyone can see it and have this in mind and don't mi

Re: [Python-Dev] Type hints -- a mediocre programmer's reaction

2015-04-23 Thread Wolfgang Langner
Hi, having a lot experience with Python beginners and people programming Java/Python I have also an opinion about this. ;-) First reaction was, oh good. Then I read every thread and comment about it, looked at a lot internal code give all some time and the result is: I found a lot of code writte

Re: [Python-Dev] async/await in Python; v2

2015-04-23 Thread Wolfgang Langner
On Thu, Apr 23, 2015 at 12:35 PM, Paul Sokolovsky wrote: > Hello, > > On Thu, 23 Apr 2015 12:18:51 +0300 > Andrew Svetlov wrote: > > [] > > > > 3. > > > async with and async for > > > Bead idea, we clutter the language even more and it is one more > > > thing every newbie could do wrong. > > > f

Re: [Python-Dev] Type hints -- a mediocre programmer's reaction

2015-04-23 Thread Wolfgang Langner
Hello, On Thu, Apr 23, 2015 at 11:59 AM, Paul Sokolovsky wrote: > Hello, > > On Thu, 23 Apr 2015 10:43:52 +0200 > Wolfgang Langner wrote: > > [] > > > Also ask why no one used type specifier, they are possible since > > Python 3.0 ? > > Because it is

Re: [Python-Dev] async/await in Python; v2

2015-04-23 Thread Wolfgang Langner
On Thu, Apr 23, 2015 at 5:32 PM, Yury Selivanov wrote: > Hi Wolfgang, > > On 2015-04-23 8:27 AM, Wolfgang Langner wrote: > >> On Thu, Apr 23, 2015 at 12:35 PM, Paul Sokolovsky >> wrote: >> >> Hello, >>> >>> On Thu, 23 Apr 2015 12:18:51

Re: [Python-Dev] async/await in Python; v2

2015-04-23 Thread Wolfgang Langner
On Thu, Apr 23, 2015 at 5:32 PM, Yury Selivanov wrote: > Hi Wolfgang, > > On 2015-04-23 8:27 AM, Wolfgang Langner wrote: > >> On Thu, Apr 23, 2015 at 12:35 PM, Paul Sokolovsky >> wrote: >> >> Hello, >>> >>> On Thu, 23 Apr 2015 12:18:51

Re: [Python-Dev] async/await in Python; v2

2015-04-23 Thread Wolfgang Langner
On Thu, Apr 23, 2015 at 6:22 PM, Yury Selivanov wrote: > Wolfgang, > > > On 2015-04-23 12:12 PM, Wolfgang Langner wrote: > >> On Thu, Apr 23, 2015 at 5:32 PM, Yury Selivanov >> wrote: >> >> Hi Wolfgang, >>> >>> On 2015-04-23 8:27 AM, Wo

Re: [Python-Dev] PEP 492: async/await in Python; version 4

2015-05-06 Thread Wolfgang Langner
Hi Yury, On 05.05.2015 20:25, Yury Selivanov wrote: >> >> We forget to address the major problems here. How can someone in a >> "sync" script use this async stuff easy. How can async and sync stuff >> cooperate and we don't need to rewrite the world for async stuff. >> How can a normal user acce

Re: [Python-Dev] Make str/bytes hash algorithm pluggable?

2013-10-14 Thread Wolfgang Langner
Hi, I have found a link to a speed comparison of hash functions: http://code.google.com/p/xxhash/ Regards, Wolfgang ___ Python-Dev mailing list Python-Dev@python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.pytho