[issue7559] TestLoader.loadTestsFromName swallows import errors

2011-07-12 Thread Alex Garel

Alex Garel  added the comment:

May I just add that I also ran into this and give my +1 for any fix :-)

--
nosy: +alexgarel

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



[issue40512] [subinterpreters] Meta issue: per-interpreter GIL

2020-12-31 Thread Alex Garel


Change by Alex Garel :


--
nosy: +alex-garel

___
Python tracker 
<https://bugs.python.org/issue40512>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19993] Pool.imap doesn't work as advertised

2018-04-12 Thread Alex Garel

Alex Garel  added the comment:

Hello, I think this is a really important feature, it hits me hard those days. 

It would also solve https://bugs.python.org/issue19173 in a nice way.

--
nosy: +alex-garel

___
Python tracker 
<https://bugs.python.org/issue19993>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue14883] html documentation does not show comments in code blocks

2012-05-22 Thread Alex Garel

New submission from Alex Garel :

Just under http://docs.python.org/library/doctest.html#doctest.REPORTING_FLAGS 
documentation speaks about how Doctest directives maybe expressed as special 
Python comments.

There are some example along with the narrative story, however comments which 
here are the important part, are not displayed in code snippet.

Looking at the sphinx source for this page : 
http://docs.python.org/_sources/library/doctest.txt the comments are present. 
Eg.

   >>> print range(20) #doctest: +NORMALIZE_WHITESPACE
   [0,   1,  2,  3,  4,  5,  6,  7,  8,  9,
   10,  11, 12, 13, 14, 15, 16, 17, 18, 19]

However in the generated html, they are not:

  print range
  (20) 
  [0,   1,  2,  3,  4,  5,  6,  7,  8,  9,


Note that this issue is not present in python 2.6.8 documentation 
http://docs.python.org/release/2.6.8/library/doctest.html#doctest.REPORTING_FLAGS
 and also 3.1.5 is ok.

It appears versions at 3.2.1 and 2.7.3

--
assignee: docs@python
components: Documentation
messages: 161351
nosy: alexgarel, docs@python
priority: normal
severity: normal
status: open
title: html documentation does not show comments in code blocks
type: behavior
versions: Python 2.7, Python 3.2, Python 3.3

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