Re: [Python-3000] failed to compile Python-3.0b1 with gcc-4.3.0: Fatal Python error: Py_Initialize: can't initialize sys standard streams

2008-06-24 Thread Georgij Kondratjev
On Friday 20 June 2008 06:04:44 Benjamin Peterson wrote: > On Thu, Jun 19, 2008 at 8:18 PM, nirinA raseliarison > > <[EMAIL PROTECTED]> wrote: > > hello all, > > i tried to build Python3.0b1 but the make process hangs > > while running: > > Building with gcc 4.3 is buggy. See > http://mail.python.o

[Python-3000] Some problems with urllib

2008-06-24 Thread Vizcayno
For Windows XP SP3: .python Python 3.0b1 (r30b1:64403M, Jun 19 2008, 14:56:09) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import urllib >>> opener = urllib.FancyURLopener({}) Traceback (most recent call last): File "", line 1,

Re: [Python-3000] Some problems with urllib

2008-06-24 Thread Nick Coghlan
The last of the PEP 3108 (standard lib reorg) changes landed for the first beta, so urllib is now a package of assorted URL related modules. >>> import urllib >>> help(urllib) Help on package urllib: NAME urllib FILE /home/ncoghlan/devel/py3k/Lib/urllib/__init__.py PACKAGE CONTENTS

Re: [Python-3000] Assert syntax change...

2008-06-24 Thread Charles Merriam
Sorry to bring up the old assert syntax issue; I wanted to clarify it before explaining to someone. For: assert expr, message_expr It seems to be left at: 1. The assert statement is left unchanged in 3.0. 2. Asserting a tuple now creates a _compile time_ warning to try to prevent assert(expr,m