Changes by Alexander Myodov :
--
title: assert -> assert statement violates the documentation
___
Python tracker
<http://bugs.python.org/issue13268>
___
___
Py
New submission from Alexander Myodov :
The extended version of assert statement has a strange violation of documented
behaviour.
According to the
http://docs.python.org/reference/simple_stmts.html#the-assert-statement,
"assert expression1, expression2" should be equivalent to &qu
New submission from Alexander Myodov :
I was recently trying to cross-compile several extensions (host: Linux, target:
Win32) using mingw-gcc, and noticed that there is quite a little amount of
changes needed to distutils code to at least make proper win32-compabible
modules.
Some of them
Alexander Myodov added the comment:
Sorry for being a little bit slow to respond...
No I was not able to come up with a testcase that could generate this problem
in a reproducible way on any Windows box I had. This problem sometimes occured
on various OS versions, being probably a Windows oof
New submission from Alexander Myodov :
Hello,
I am using Python 2.6.5 and Cython (to embed the Python interpreter) to create
a simple launcher.exe launcher which then imports and uses the remaining logic
from the other modules, conveniently stored in a single modules.zip file (i.e.
importing
Alexander Myodov added the comment:
Sorry for formatting above, a copypaste issue.
The lines 202-204:
win32.SetNamedPipeHandleState(
h2, win32.PIPE_READMODE_MESSAGE, None, None
)
The change that fixes the problem (at least for me):
try
New submission from Alexander Myodov :
I am using Python 2.6.5/win32, and working with multiprocessing module, doing
that with Python interpreter embedded using Cython (if that may be related to
the problem).
While creating a subprocess and a Pipe to communicate with it, I've go
Alexander Myodov added the comment:
In this case, I'd suggest to rephrase it to "See :func:`itertools.ifilterfalse`
for the complementary function that returns the iterator over the elements of
*iterable* for which *function* returns false.", or even remove this line a
Changes by Alexander Myodov :
--
type: -> behavior
___
Python tracker
<http://bugs.python.org/issue8472>
___
___
Python-bugs-list mailing list
Unsubscri
New submission from Alexander Myodov :
The documentation (eg at
http://docs.python.org/release/2.6.5/library/functions.html#filter) tells that
there should be an itertools.filterfalse() function complementary to builtin
filter() function, that returns the list of elements (instead of the
New submission from Alexander Myodov :
Seems like a minor documentation issue in 2.x became more significant
one in 3.x.
In Python 2.6 (and lower), the documentation on Profile objects
discussed them as a part of hotshot module, while omitting the fact
that any profiler module, either of
New submission from Alexander Myodov :
Occurs in 2.6, doesn't occur in 3.1.
Example:
Python 2.6.2+ (release26-maint, Jun 23 2009, 07:08:39)
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> fr
12 matches
Mail list logo