Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue6792>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue22028>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Piotr Majkrzak:
In documentation
https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.Executor.map
is writen that this fucntion is equivalent to the builtin map. But it is not
true due to the fact that it is not lazy evalueded. The reason is in
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue22889>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Piotr Jurkiewicz:
After setting socket.settimeout(5.0), socket.send() returns immediately,
instead of returning after specified timeout.
Steps to reproduce:
Open two python interpreters.
In the first one (the receiver) execute:
>>> import socket
>>>
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue14965>
___
___
Python-bugs-list mailing list
Unsubscribe:
Piotr Jurkiewicz added the comment:
Does not work on Debian 7 Wheezy, kernel 3.2.65.
$ python test.py
('sending ', 0)
took 0.000s
('sending ', 1)
took 0.000s
('sending ', 2)
took 0.000s
('sending ', 3)
took 0.000s
('sending ', 4)
took 0.000
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue24363>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue9427>
___
___
Python-bugs-list mailing list
Unsubscribe:
Piotr Dobrogost added the comment:
This problem came out in the bug "Cannot make URL query string with a parameter
without a value (https://github.com/kennethreitz/requests/issues/2651) raised
in urllib3 project (which itself is being used by Requests library mentioned in
thi
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue15873>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue21536>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue2528>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue9325>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue19982>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue23434>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Piotr Dobrogost:
It would be helpful to make it clear in section "Configuration file format"
that it's not possible to configure filters through configuration file as
opposed to dictionary passed to dictConfig() method.
I found this clearly stated in Pyrami
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue23576>
___
___
Python-bugs-list mailing list
Unsubscribe:
Piotr Dobrogost added the comment:
> This new patch abandons the buffer interface and specializes for Bytes per
> the comments on this issue.
Why does it abandon buffer interface? Because of the following?
> Thanks for digging here. As much as I'd love to follow this interpr
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue23754>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue23752>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue21861>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue23841>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue23246>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Piotr Kasprzyk:
Correct misspellings in various files.
--
assignee: docs@python
components: Documentation
files: misspellings.patch
keywords: patch
messages: 240825
nosy: docs@python, kwadrat
priority: normal
severity: normal
status: open
title: Misspellings in a few
Piotr Kasprzyk added the comment:
Thank you for accepting the patch!
--
___
Python tracker
<http://bugs.python.org/issue23943>
___
___
Python-bugs-list mailin
Changes by Piotr Dobrogost :
--
nosy: +piotr.dobrogost
___
Python tracker
<http://bugs.python.org/issue22269>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Jakub Piotr Cłapa :
On a macOS hosts the system ranlib does not understand ELF
files so using the "ranlib" command causes errors during cross-compilations.
The simplest way to fix it is to pass the RANLIB parameter provided to setup.py
through to the distutil
New submission from Jakub Piotr Cłapa :
macOS needs to link to CoreFoundation for gettext to work. We reorder the
autoconf tests so CoreFoundation is added to LIBS earlier and the -lintl test
does not fail (which would exclude it from the final set of flags).
Btw. the whole test seems fishy
Change by Jakub Piotr Cłapa :
--
keywords: +patch
pull_requests: +16599
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/17090
___
Python tracker
<https://bugs.python.org/issu
Change by Jakub Piotr Cłapa :
--
pull_requests: +16994
pull_request: https://github.com/python/cpython/pull/15387
___
Python tracker
<https://bugs.python.org/issue31
201 - 231 of 231 matches
Mail list logo