[issue5974] unicode decode error due to improperly entered text "Martin v. Löwis"

2009-05-09 Thread Martin v. Löwis

Martin v. Löwis  added the comment:

Thanks for the patch. Fixed in r72496.

--
nosy: +loewis
resolution:  -> accepted
status: open -> closed

___
Python tracker 

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



[issue5900] Ensure RUNPATH is added to extension modules with RPATH if GNU ld is used

2009-05-09 Thread Tarek Ziadé

Tarek Ziadé  added the comment:

I including the patch right now. I a changing minor things (adding the
missing configure and renaming tests)

--
versions: +Python 3.1

___
Python tracker 

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



[issue5900] Ensure RUNPATH is added to extension modules with RPATH if GNU ld is used

2009-05-09 Thread Tarek Ziadé

Tarek Ziadé  added the comment:

done in r72497 in trunk. (tests run under macos, debian and win)

I'll wait 2 hours to watch the buildbots then I'll propagate it to the
py3k branch

--

___
Python tracker 

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



[issue5976] test_os fails if run after test_distutils

2009-05-09 Thread Tarek Ziadé

New submission from Tarek Ziadé :

./python Lib/test/regrtest.py -v test_distutils test_os

--
assignee: tarek
components: Distutils
messages: 87487
nosy: tarek
priority: critical
severity: normal
status: open
title: test_os fails if run after test_distutils
versions: Python 2.7, Python 3.1

___
Python tracker 

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



[issue3992] removed custom log from distutils

2009-05-09 Thread Antonio Cavallo

Antonio Cavallo  added the comment:

Hi,
the latest patch (custom-log.diff minus the import logging
at the begin) breaks the imaging python module build:
the log is in the file susebuild.failed.imaging.log.

--
Added file: http://bugs.python.org/file13939/susebuild.failed.imaging.log

___
Python tracker 

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



[issue5976] test_os fails if run after test_distutils

2009-05-09 Thread Tarek Ziadé

Tarek Ziadé  added the comment:

fixed in r72500 and r72502

--
status: open -> closed

___
Python tracker 

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



[issue3992] removed custom log from distutils

2009-05-09 Thread Antonio Cavallo

Antonio Cavallo  added the comment:

Hi Tarek,

there is a colliding warn symbol: one defiend whiting import warnings 
as warn and another defined as warn = logger.warn (~ line 56).

It breaks all the modules build (see attached file 
susebuild.failed.imaging-2.log).

As soon I confirm the patch I'll publish the modified version (it is 
now building).

--
Added file: http://bugs.python.org/file13940/susebuild.failed.imaging-2.log

___
Python tracker 

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



[issue5900] Ensure RUNPATH is added to extension modules with RPATH if GNU ld is used

2009-05-09 Thread Tarek Ziadé

Tarek Ziadé  added the comment:

done in py3k in r72504


Thanks Floris !

--
status: open -> closed

___
Python tracker 

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



[issue5971] logging.Handler.handlerError() may raise IOError in traceback.print_exception()

2009-05-09 Thread Vinay Sajip

Vinay Sajip  added the comment:

Fix checked into trunk and release26-maint.

--
resolution:  -> fixed
status: open -> closed

___
Python tracker 

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



[issue1578269] Add os.link() and os.symlink() support for Windows

2009-05-09 Thread Jason R. Coombs

Jason R. Coombs  added the comment:

If I produce a patch for Python 3.1, can this capability possibly be
included in the release?  Are there any objections to the implementation
as found in jaraco.windows?

--

___
Python tracker 

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



[issue5977] distutils build_ext.get_outputs returns wrong result (patch)

2009-05-09 Thread kxroberto

New submission from kxroberto :

with --inplace etc. build_ext.get_outputs returns wrong extension paths;
tries to computes them out of the air *again* and ..

Tools which need to further know the produced module file, e.g.
pyximport (Cython) do crash then ...

patch see attachment: stores and uses the real path in use.
writes a new attribute ext_filename to Extension object - should it be
underscored _ext_filename or ... ?

--
assignee: tarek
components: Distutils
files: ext_filename.patch
keywords: patch
messages: 87494
nosy: kxroberto, tarek
severity: normal
status: open
title: distutils build_ext.get_outputs returns wrong result (patch)
type: crash
versions: Python 2.6
Added file: http://bugs.python.org/file13941/ext_filename.patch

___
Python tracker 

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



[issue5977] distutils build_ext.get_outputs returns wrong result (patch)

2009-05-09 Thread Tarek Ziadé

Tarek Ziadé  added the comment:

can you provide a test case that demonstrates the problem ?

--
versions: +Python 2.7, Python 3.1 -Python 2.6

___
Python tracker 

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



[issue1578269] Add os.link() and os.symlink() support for Windows

2009-05-09 Thread Martin v. Löwis

Martin v. Löwis  added the comment:

With 3.1b1 already released, most likely this is too late for 3.1
(unless there would be a second beta, which is currently not planned).

--

___
Python tracker 

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



[issue3992] removed custom log from distutils

2009-05-09 Thread Tarek Ziadé

Tarek Ziadé  added the comment:

Antonio, I am starting to think that having distutils dependencies in
site.py smells bad.

I have sent a mail in python-dev about it, that is now discussed in
python-ideas to discuss the creation of a separated sysconfig module.

So this patch will be held until we take a decision for sysconfig.

Thanks for your work so far !

--
versions: +Python 3.1

___
Python tracker 

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



[issue5908] I need to import the module in the same thread

2009-05-09 Thread Amaury Forgeot d'Arc

Amaury Forgeot d'Arc  added the comment:

With python, the first "import" of a library runs its initialization
code. Subsequent imports only retrieves the module object from the memory.

> for this library, it matter where you import the thing.

More precisely: it matters where you *first* import the thing. the
pyatspi import function probably runs some code that depends on the
running thread.
This is a common issue for event-driven libraries, often resolved by
splitting the initialization into two phases, the "import" phase and an
"init" function that performs thread-sensitive things.
You should forward your problem to the pyatspi team.

Since your first example works correctly, I close this issue as "works
for me".

--
nosy: +amaury.forgeotdarc
resolution:  -> works for me
status: open -> closed

___
Python tracker 

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



[issue1483545] Wave.py support for ulaw and alaw audio

2009-05-09 Thread Amaury Forgeot d'Arc

Amaury Forgeot d'Arc  added the comment:

Please read http://www.python.org/dev/patches/
The best format for a patch is a "diff -u" format. It's much much easier
to see what you changed to the existing code, and the same patch often
applies to several versions.
Also, 2.4 and 2.5 are closed for new developments - your changes would
only go to a 2.7 version.

And your change is more likely to be accepted if it contains unit tests
(in Lib/test/test_wave.py)

--
nosy: +amaury.forgeotdarc

___
Python tracker 

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



[issue4938] Pdb cannot access doctest source in postmortem

2009-05-09 Thread Jonathan

Jonathan  added the comment:

#!/usr/bin/env python
# This does what you want. Change pydb for pdb if you prefer it.
import pydb
import doctest
import sys
sys.excepthook = pydb.exception_hook
try:
doctest.testfile("story.txt",verbose=False,raise_on_error=True)
except doctest.UnexpectedException, failure:
pass
exc_info = failure.exc_info
raise exc_info[0], exc_info[1], exc_info[2]

--
nosy: +jonathan.cervidae

___
Python tracker 

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



[issue4938] Pdb cannot access doctest source in postmortem

2009-05-09 Thread Jonathan

Jonathan  added the comment:

#!/usr/bin/env python
# Slight mistake in last post
import pydb
import doctest
import sys
sys.excepthook = pydb.exception_hook
try:
doctest.testfile("story.txt",verbose=False,raise_on_error=True)
except doctest.UnexpectedException, failure:
exc_info = failure.exc_info
raise exc_info[0], exc_info[1], exc_info[2]

--

___
Python tracker 

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



[issue3992] removed custom log from distutils

2009-05-09 Thread Antonio Cavallo

Antonio Cavallo  added the comment:

Hi Tarek,

This is the latest patch to log.py that compiles with the latest python 
svn 72494. It shows no problem with the few modules I've used so far: 
now I can't decide if this should go mainline or not but I'll leave 
here as reference anyway.
Cheers,
Antonio

--
Added file: http://bugs.python.org/file13942/custom-log-000.dif

___
Python tracker 

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



[issue5973] re-usable generators / generator expressions should return iterables

2009-05-09 Thread R. David Murray

R. David Murray  added the comment:

You might be interested to read about this package:

http://www.fiber-space.de/generator_tools/doc/generator_tools.html

For anything to happen in this area you'd need to get some consensus on
python-ideas first.  If you do that, you can open a new ticket
referencing the python-ideas thread (or even reopen this one if that
seems appropriate).

--
nosy: +r.david.murray
resolution:  -> rejected
status: open -> closed
versions:  -Python 3.1

___
Python tracker 

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



[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2009-05-09 Thread Akkana Peck

New submission from Akkana Peck :

I was following the steps at http://docs.python.org/library/profile.html
to try to profile a pygtk program, but it wasn't working -- I was
getting no output at all from either cProfile or profile.

The problem turned out to be that I was exiting by calling sys.exit(0),
because that's what most pygtk programs I'd seen were doing. Changing
that to gtk.main_quit() made profiling work (but it took a long time to
track that down).

Apparently the same thing happens in pyqt if you call sys.exit(0).

--
components: Demos and Tools
files: pywin
messages: 87504
nosy: akkana
severity: normal
status: open
title: cProfile and profile don't work with pygtk/pyqt and sys.exit(0)
type: behavior
versions: Python 2.5
Added file: http://bugs.python.org/file13943/pywin

___
Python tracker 

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



[issue5979] strptime() gives inconsistent exceptions

2009-05-09 Thread Ryan Leslie

New submission from Ryan Leslie :

e.g.

>>> from datetime import datetime
>>>
>>> datetime.strptime("19951001", "%Y%m%d")
datetime.datetime(1995, 10, 1, 0, 0)
>>>
>>> datetime.strptime("19951000", "%Y%m%d") # day = 0, month < 11
 ...
ValueError: time data '19951000' does not match format '%Y%m%d'
>>>
>>> datetime.strptime("19951100", "%Y%m%d") # day = 0, month >= 11
 ...
ValueError: unconverted data remains: 0
>>>

The exception messages are not really a serious issue, but note that the
latter one can be confusing for users.

However, there seems to be some underlying issues with the choice to
recognize single digit months with double digit days, which can make
date strings ambiguous:

Consider "19951100" from above with the last '0' removed.

>>> datetime.strptime("1995110", "%Y%m%d")
datetime.datetime(1995, 1, 10, 0, 0)
>>>

In this case, strptime has treated the middle '1' as the month,
resulting in 1995-01-10. This hints at why the second exception from
above gives a strange message: with the extra '0' the day portion of
"19951100" (00) is invalid, and strptime falls back on parsing the first
7 characters as above, and then failing due to the remaining '0'.

This seems a little dangerous. For instance:
timestamp = "19951101-23:20:18"
datestamp=timestamp[:7] # Oops, needed to use :8 to get up to index 7.
reallyImportantButWrongDate = datetime.strptime(datestamp, "%Y%m%d")

Note that in this case strptime() from glibc would instead result in an
error, which IMHO is the right thing to do.

I do realize, though, that changing the behavior of strptime() could
devastate some existing code.

--
components: Library (Lib)
messages: 87505
nosy: ryles
severity: normal
status: open
title: strptime() gives inconsistent exceptions
type: behavior
versions: Python 2.4, Python 2.5, Python 2.6, Python 2.7, Python 3.0, Python 3.1

___
Python tracker 

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



[issue5977] distutils build_ext.get_outputs returns wrong result (patch)

2009-05-09 Thread kxroberto

kxroberto  added the comment:

>>> test_build_ext: The test must be run in a python build dir

don't have a build setup currently. maybe in future.

One can yet see in build_ext.py:

after "if self.inplace:" (line485)
there are 2 different computations for ext_filename

while computation in get_outputs() is not aware of self.inplace (line447

--

___
Python tracker 

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



[issue5953] Add to "whats new": range(n) != range(n)

2009-05-09 Thread Mitchell Model

Mitchell Model  added the comment:

Sorry -- I did notice in the copies sent to me of my replies to bugs.python.org 
that there was HTML, but I can't  figure out why. I didn't use any style text 
in the message nor in my signature. I thought my email program only sent HTML 
when there was some styled text in the message. I just changed a setting that 
might fix this -- please tell me if you are seeing HTML in this.
-- 
-- 

--- Mitchell

--

___
Python tracker 

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



[issue5980] Add bug tracker tasks to PEP 101

2009-05-09 Thread Daniel Diniz

New submission from Daniel Diniz :

This patch would add the following bug tracker tasks to PEP 101 (Doing
Python Releases 101):
 - Add version X.Y+1 as when version X.Y enters alpha.

 - Change non-doc RFEs to version X.Y+1 when version X.Y enters beta.

 - Update 'behavior' issues from versions that your release make
   unsupported to the next supported version.

 - Review open issues, as this might find lurking showstopper bugs,
   besides reminding people to fix the easy ones they forgot about.

These are the changes mentioned in
http://psf.upfronthosting.co.za/roundup/meta/issue283

However, I'm tempted to update PEP 3 (Guidelines for Handling Bug
Reports) instead, adding these (and the blocker <-> deferred flips) as
tracker janitors' tasks.

What do you think?

--
assignee: georg.brandl
components: Documentation
files: bugtracker.diff
keywords: patch
messages: 87508
nosy: ajaksu2, georg.brandl, loewis
priority: low
severity: normal
status: open
title: Add bug tracker tasks to PEP 101
type: feature request
Added file: http://bugs.python.org/file13944/bugtracker.diff

___
Python tracker 

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



[issue5797] there is en exception om Create User page

2009-05-09 Thread Daniel Diniz

Changes by Daniel Diniz :


--
priority:  -> low
status: open -> pending
versions:  -Python 3.1

___
Python tracker 

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



[issue5981] float.fromhex bugs

2009-05-09 Thread Mark Dickinson

New submission from Mark Dickinson :

Two problems with float.fromhex:

(1) it incorrectly rejects trailing whitespace on infs and nans:

>>> float.fromhex('a.0 ')
10.0
>>> float.fromhex('nan ')
Traceback (most recent call last):
  File "", line 1, in 
ValueError: invalid hexadecimal floating-point string

(2) The implementation uses PyOS_strnicmp for detecting nans and infs,
which is locale-aware.  A locale-unaware case-insensitive comparison 
should be used instead.  I don't know of any locale where this actually 
makes a difference, but I think it should be fixed anyway.

--
assignee: marketdickinson
components: Interpreter Core
messages: 87509
nosy: marketdickinson
priority: normal
severity: normal
stage: needs patch
status: open
title: float.fromhex bugs
type: behavior
versions: Python 2.6, Python 2.7, Python 3.0, Python 3.1

___
Python tracker 

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



[issue5981] float.fromhex bugs

2009-05-09 Thread Mark Dickinson

Mark Dickinson  added the comment:

Here's a patch.

--
keywords: +patch
stage: needs patch -> patch review
Added file: http://bugs.python.org/file13945/issue5981.patch

___
Python tracker 

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



[issue5982] classmethod, staticmethod: expose wrapped function

2009-05-09 Thread George Sakkis

New submission from George Sakkis :

It would be nice if classmethod/staticmethod exposed the wrapped
function as a read-only attribute/property. Currently the function can
be retrieved indirectly but it's obscure (and perhaps not always
correct, I'm not sure):

In [147]: def f():pass
   .: 

In [148]: c = classmethod(f)

In [149]: s = staticmethod(f)

In [150]: c.__get__(1).im_func is f
Out[150]: True

In [151]: s.__get__(1) is f
Out[151]: True

--
messages: 87511
nosy: gsakkis
severity: normal
status: open
title: classmethod, staticmethod: expose wrapped function
type: feature request
versions: Python 2.7

___
Python tracker 

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



[issue5983] boolean.so no more in _xmlplus/utils

2009-05-09 Thread schmirrwurst

New submission from schmirrwurst :

We are a few experiencing a failure with openerp on ubuntu.
We are missing the file  boolean.so from _xmlplus/utils/ in python 2.5 and 2.6

instead we found it in /usr/lib/python2.x/dist-packages/oldxml/_xmlplus/utils/

is it normal ?

bug report on lp :
https://bugs.launchpad.net/ubuntu/+source/python-xml/+bug/343242/
https://bugs.launchpad.net/ubuntu/+source/openerp-server/+bug/337759

--
messages: 87512
nosy: schmirrwurst
severity: normal
status: open
title: boolean.so no more in _xmlplus/utils
type: resource usage
versions: Python 2.5, Python 2.6

___
Python tracker 

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



[issue5983] boolean.so no more in _xmlplus/utils

2009-05-09 Thread schmirrwurst

Changes by schmirrwurst :


--
components: +XML
type: resource usage -> behavior

___
Python tracker 

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



[issue5953] Add to "whats new": range(n) != range(n)

2009-05-09 Thread Terry J. Reedy

Terry J. Reedy  added the comment:

Mitchell Model wrote:
> Mitchell Model  added the comment:
> 
> Sorry -- I did notice in the copies sent to me of my replies to
> bugs.python.org that there was HTML, but I can't  figure out why. I
> didn't use any style text in the message nor in my signature. I
> thought my email program only sent HTML when there was some styled
> text in the message. I just changed a setting that might fix this --
> please tell me if you are seeing HTML in this.

No, looks great.  I believe for most (all?) mailers, '[x] sent html' 
*always* sends html, even if not 'needed'.

--

___
Python tracker 

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



[issue5983] boolean.so no more in _xmlplus/utils

2009-05-09 Thread Martin v. Löwis

Martin v. Löwis  added the comment:

This bug tracker is for Python, not for the PyXML package (where
boolean.so comes from).

Closing as invalid.

--
nosy: +loewis
resolution:  -> invalid
status: open -> closed
versions: +3rd party -Python 2.5, Python 2.6

___
Python tracker 

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



[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-09 Thread Brett Cannon

Brett Cannon  added the comment:

OK, here is an attempt to fix this. My guess is it has something to do
with sys.dont_write_bytecode, otherwise I cannot understand why you fail
and not someone else since no other case-sensitive systems have reported
this failure.

--
status: open -> pending
Added file: http://bugs.python.org/file13946/skip_bytecode_writing.diff

___
Python tracker 

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



[issue5442] test_importlib fails on Mac OSX 10.5.6 w/ case-sensitive file system

2009-05-09 Thread Ismail Donmez

Ismail Donmez  added the comment:

1 Fail:

test test_importlib crashed -- : 'module' object 
has no attribute 'writes_bytecode'
Traceback (most recent call last):
  File "/Users/cartman/Python-3.1b1/Lib/test/regrtest.py", line 620, in 
runtest_inner
indirect_test()
  File "/Users/cartman/Python-3.1b1/Lib/test/test_importlib.py", line 6, 
in test_main
run_unittest(importlib.test.test_suite('importlib.test'))
  File "/Users/cartman/Python-3.1b1/Lib/importlib/test/__init__.py", 
line 22, in test_suite
package_tests = getattr(sys.modules[package_name], 'test_suite')()
  File "/Users/cartman/Python-
3.1b1/Lib/importlib/test/source/__init__.py", line 8, in test_suite
return importlib.test.test_suite('importlib.test.source', directory)
  File "/Users/cartman/Python-3.1b1/Lib/importlib/test/__init__.py", 
line 16, in test_suite
__import__(module_name, level=0)
  File "/Users/cartman/Python-
3.1b1/Lib/importlib/test/source/test_file_loader.py", line 111, in 

class BadBytecodeTest(unittest.TestCase):
  File "/Users/cartman/Python-
3.1b1/Lib/importlib/test/source/test_file_loader.py", line 130, in 
BadBytecodeTest
@source_util.writes_bytecode
AttributeError: 'module' object has no attribute 'writes_bytecode'
1 test failed:
test_importlib

--
status: pending -> open

___
Python tracker 

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