[issue33649] asyncio docs overhaul

2018-09-19 Thread Yury Selivanov


Change by Yury Selivanov :


--
pull_requests: +8853

___
Python tracker 

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



[issue34736] Confusing base64.b64decode output

2018-09-19 Thread Tal Einat


Tal Einat  added the comment:

I welcome suggestions for improvement!

We could either find a better error message covering all cases, or emit a more 
specific message when non-base64 characters have been skipped.

Unfortunately, skipping non-base64 characters is a basic assumption of 
a2b_base64 which is used under the hood, and it currently provides no 
indication whether such characters are skipped, and if so how many.  Also, it 
is common in some contexts to have line breaks in base64-encoded data, which 
are skipped when decoding.

--
versions: +Python 3.8

___
Python tracker 

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



[issue17560] problem using multiprocessing with really big objects?

2018-09-19 Thread Shyam Saladi


Shyam Saladi  added the comment:

I apologize if this isn't the right forum to post this message, but Davin, if 
you have since put together the guide/blogpost mentioned in your message, would 
you be able to share a link to the material please?

I am interested in gaining a better understanding of multiprocessing's 
pluggable pickler and, more generally, dealing with large objects (the comment 
about this being being an anti-pattern is noted).

Thank you.

--
nosy: +saladi

___
Python tracker 

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



[issue34746] Asyncio documentation have a error

2018-09-19 Thread Yury Selivanov


Yury Selivanov  added the comment:

Thanks for filing the bug!

--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue34746] Asyncio documentation have a error

2018-09-19 Thread miss-islington


miss-islington  added the comment:


New changeset 4fe8dc68577f9e22aaf24db08fb6647277c42d4c by Miss Islington (bot) 
in branch '3.7':
bpo-34746: Fix stop -> close (GH-9437)
https://github.com/python/cpython/commit/4fe8dc68577f9e22aaf24db08fb6647277c42d4c


--
nosy: +miss-islington

___
Python tracker 

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



[issue34746] Asyncio documentation have a error

2018-09-19 Thread miss-islington


Change by miss-islington :


--
pull_requests: +8852

___
Python tracker 

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



[issue34746] Asyncio documentation have a error

2018-09-19 Thread Yury Selivanov


Yury Selivanov  added the comment:


New changeset ffef50f1f5907e5f0f175b12088d3e509011f126 by Yury Selivanov in 
branch 'master':
bpo-34746: Fix stop -> close (GH-9437)
https://github.com/python/cpython/commit/ffef50f1f5907e5f0f175b12088d3e509011f126


--

___
Python tracker 

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



[issue34686] Add `-r`, as opposed to `-R` to Python core interpreter

2018-09-19 Thread Benjamin Peterson


Benjamin Peterson  added the comment:

See #34722.

--

___
Python tracker 

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



[issue34746] Asyncio documentation have a error

2018-09-19 Thread Yury Selivanov


Change by Yury Selivanov :


--
keywords: +patch
pull_requests: +8851
stage:  -> patch review

___
Python tracker 

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



[issue34746] Asyncio documentation have a error

2018-09-19 Thread lanzhiwang


New submission from lanzhiwang :

https://docs.python.org/3.7/library/asyncio-llapi-index.html

loop.stop() Close the event loop.
fix
loop.close() Close the event loop.

--
components: asyncio
messages: 325838
nosy: asvetlov, docs@python, hzhil...@163.com, yselivanov
priority: normal
severity: normal
status: open
title: Asyncio documentation have a error
type: enhancement
versions: Python 3.7

___
Python tracker 

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



[issue34722] Non-deterministic bytecode generation

2018-09-19 Thread Benjamin Peterson


Benjamin Peterson  added the comment:

Possibly we should just sort the individual marsahalled entries of the 
frozenset.

--

___
Python tracker 

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



[issue34138] imaplib RFC 6855 issue

2018-09-19 Thread Gordon Messmer


Gordon Messmer  added the comment:

PR 9436 should resolve the issue.

Since the RFC requires the "UTF8 (" prefix in the "data" and not in the 
literal, that had to be moved into the _command function.

This change should only affect the append() use, as that is currently the only 
function that sets self.literal to a value that is not a function.  The 
authenticate() use is not affected, and no other functions set self.literal.

--
nosy: +gordonmessmer

___
Python tracker 

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



[issue34138] imaplib RFC 6855 issue

2018-09-19 Thread Roundup Robot


Change by Roundup Robot :


--
keywords: +patch
pull_requests: +8849
stage:  -> patch review

___
Python tracker 

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



[issue32810] Expose ags_gen and agt_gen in asynchronous generators

2018-09-19 Thread Keith Dart


Change by Keith Dart :


--
nosy: +kdart

___
Python tracker 

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



[issue34660] Replace ableist terms and pejoratives in source code.

2018-09-19 Thread Gabriel Marko


Gabriel Marko  added the comment:

@terry.reed:

I politely ask you: Please use my proper first name if you refer to me and 
please don't call me an extremist (like here 
https://bugs.python.org/msg325802). Feel free to criticize my opinion but don't 
put labels on me. We don't know each other. Labeling people (not actions or 
ideas) is ad hominem argumentation or can be considered to be a personal attack 
which as far as I understand isn't complaint with CoC either.

And please don't misrepresent what I wrote:

> Marko called our actions 'madness' and here called us 'irresponsible'.   
> (https://bugs.python.org/issue34694#msg325802)

I called _the behavior_ irresponsible not the people. Even responsible people 
can sometimes have irresponsible choices or behavior.

> I find this behavior from the Python core developers and representatives 
> simply rresponsible. (https://bugs.python.org/msg325499)

I hope we can end this debate here.

--
nosy: +suic

___
Python tracker 

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



[issue33676] test_multiprocessing_fork: dangling threads warning

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue30884] regrtest -jN --timeout=TIMEOUT should kill child process running longer than TIMEOUT seconds

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue33680] regrtest: re-run failed tests in a subprocess

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue33966] test_multiprocessing_spawn.WithProcessesTestPool.test_traceback() leaks 4 handles on Windows

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

I give up on that one :-( It doesn't seem easy to fix this corner case without 
changing the behaviour.

--
resolution:  -> out of date
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue33686] test_concurrent_futures: test_pending_calls_race() failed on x86 Windows7 3.6

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue34150] test_multiprocessing_spawn: Dangling processes leaked on AMD64 FreeBSD 10.x Shared 3.x

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue33683] asyncio: sendfile tests ignore SO_SNDBUF on Windows

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue33920] test_asyncio: test_run_coroutine_threadsafe_with_timeout() failed on AMD64 FreeBSD 10.x Shared 3.7

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Yury Selivanov


Yury Selivanov  added the comment:

Aaand... it's back.

--

___
Python tracker 

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



[issue34131] test_threading: BarrierTests.test_default_timeout() failed on AppVeyor

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue32093] macOS: implement time.thread_time() using thread_info()

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

> I'm not sure if it is worthwhile to implement this fairly specialised 
> function for older macOS releases due to the maintenance cost.

Ok. I close the issue.

--
resolution:  -> wont fix
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue23236] asyncio: add timeout to StreamReader read methods

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

This feature request doesn't seem popular and I lost track of it, so I just 
close the issue. Sorry.

--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue19613] test_nntplib: sporadic failures, test_article_head_body()

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

I suggest to close the issue since the bug didn't show up recently.

--

___
Python tracker 

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



[issue29306] Check usage of Py_EnterRecursiveCall() and Py_LeaveRecursiveCall() in new FASTCALL functions

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

I'm not sure about touching the stable branches. At least, the issue has been 
fixed since Python 3.7. I close the issue.

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

___
Python tracker 

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



[issue29471] AST: add an attribute to FunctionDef to distinguish functions from generators and coroutines

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

> I'm not sure we need this feature TBH.

Ok, I close the issue.

--
resolution:  -> wont fix
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue30317] test_timeout() of test_multiprocessing_spawn.WithManagerTestBarrier fails randomly on x86 Windows7 3.x buildbot

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

Let's close this giant issue since a fix has been merged. Please open a new 
issue if a similar bug appears.

Thanks Pablo Galindo for the fix ;-)

--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue30816] test_open() of test_eintr timeout after 10 min on "x86-64 El Capitan 3.x"

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue31687] test_semaphore_tracker() of test_multiprocessing_spawn fails randomly (race condition?)

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

bpo-33613 and bpo-34040 have been fixed. I hope that it will be enough.

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

___
Python tracker 

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



[issue21998] asyncio: support fork

2018-09-19 Thread Yury Selivanov


Yury Selivanov  added the comment:

I'll revisit this later.

--

___
Python tracker 

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



[issue33613] test_multiprocessing_fork: test_semaphore_tracker_sigint() fails with -W error

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue33531] test_asyncio: test_subprocess test_stdin_broken_pipe() failure on Travis CI

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue33868] test__xxsubinterpreters: test_subinterpreter() fails randomly on AMD64 Ubuntu Shared 3.x

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue30198] distutils build_ext: don't run newer_group() in parallel in multiple threads when using parallel

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue29674] Use GCC __attribute__((alloc_size(x, y))) on PyMem_Malloc() functions

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue29465] Modify _PyObject_FastCall() to reduce stack consumption

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

> I should measure the stack usage to check if it's still worth it.

IMHO we gone far enough in optimizing the stack usage:
https://vstinner.github.io/contrib-cpython-2017q1.html

I close the issue.

--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue28224] Compilation warnings on Windows: export 'PyInit_xx' specified multiple times

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
status: open -> closed

___
Python tracker 

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



[issue29419] Argument Clinic: inline PyArg_UnpackTuple and PyArg_ParseStack(AndKeyword)?

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue18295] Possible integer overflow in PyCode_New()

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue19431] Document PyFrame_FastToLocals() and PyFrame_FastToLocalsWithError()

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution: out of date -> wont fix

___
Python tracker 

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



[issue19431] Document PyFrame_FastToLocals() and PyFrame_FastToLocalsWithError()

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

It seems like these functions should be documented, so I close the issue.

--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue19756] test_nntplib: sporadic failures, network isses? server down?

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

I didn't see test_nntplib failing recently, so I close the issue as outdated.

--
resolution:  -> out of date
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue20414] Python 3.4 has two Overlapped types

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue21998] asyncio: support fork

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

> I'm torn between 2 & 3.  Guido, Victor, Martin, what do you think?

Give up, document that fork() is not supported and close the issue :-) IMHO 
it's not worth it.

--

___
Python tracker 

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



[issue21702] asyncio: remote_addr of create_datagram_endpoint() is not documented

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue34745] asyncio ssl memory leak

2018-09-19 Thread Yury Selivanov


Yury Selivanov  added the comment:

Would you be able to test uvloop/master branch?  Current uvloop 0.11.x uses 
pretty much the asyncio implementation; the master branch has a completely 
rewritten SSL layer.  If the master branch has the leak it might mean that the 
root cause is indeed in either the ssl module or openssl itself.

--

___
Python tracker 

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



[issue26568] Add a new warnings.showwarnmsg() function taking a warnings.WarningMessage object

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


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

___
Python tracker 

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



[issue30244] Emit a ResourceWarning in concurrent.futures executor destructors

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue32557] allow shutil.disk_usage to take a file path on Windows also

2018-09-19 Thread Steve Dower


Steve Dower  added the comment:

(Excuse the GitHub syntax - was about to post it there, but it got long enough 
to belong here)

Regarding the `_dirnameW` discussion, fixing `_dirname` would be ideal, but 
that is bloating out your PR quite a bit :)

The "right" function to use there is 
[PathCchRemoveFileSpec](https://docs.microsoft.com/en-us/windows/desktop/api/pathcch/nf-pathcch-pathcchremovefilespec),
 which unfortunately does not exist on Windows 7.

The fallback is 
[PathRemoveFileSpec](https://docs.microsoft.com/en-us/windows/desktop/api/shlwapi/nf-shlwapi-pathremovefilespeca)
 which only supports up to `MAX_PATH` (but may do something relatively sensible 
for longer paths, such as trimming out the last directory separator before that 
limit - I haven't tested it).

Supporting both is tricky - there's a similar example in `PC/getpathp.c` for 
`PathCchCombineEx` that could be replicated for dirname. But I'd be okay with 
taking this PR without that fix and filing a new bug for `_dirnameW`.

--

___
Python tracker 

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



[issue30227] test_site must not write outside the build directory: must not write into $HOME/.local/

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue29451] Use _PyArg_Parser for _PyArg_ParseStack(): support positional only arguments

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue30188] test_nntplib: random EOFError in setUpClass()

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> fixed
stage: backport needed -> resolved
status: open -> closed

___
Python tracker 

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



[issue30170] "tests may fail, unable to create temporary directory" warning on buildbot: add a cleanup step to buildbots

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue34745] asyncio ssl memory leak

2018-09-19 Thread Alexander Mohr


Alexander Mohr  added the comment:

sorry, by "raw" I mean in the context of aiohttp, so just using the normal 
python ssl context and asyncio sockets.  I don't think it's an object not 
getting GC'd because I didn't see any increase on object counts, nor leaks per 
tracemalloc.  I think it's some low-level native memory leaked by openssl.

I've updated the gist w/ uvloop and ran with it and still get a leak, see gist 
+ aiohttp issue for plot

--

___
Python tracker 

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



[issue29881] Add a new private API clear private variables, which are initialized once, at Python shutdown

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue30776] regrtest: change -R/--huntrleaks rule to decide if a test leaks references

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> fixed
stage: needs patch -> resolved
status: open -> closed

___
Python tracker 

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



[issue30318] test_distutils is too verbose on Windows

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> wont fix
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue31321] traceback.clear_frames() doesn't clear *all* frames

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue32128] test_nntplib: test_article_head_body() fails in SSL mode

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue32183] Coverity: CID 1423264: Insecure data handling (TAINTED_SCALAR)

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> out of date
stage: needs patch -> resolved
status: open -> closed

___
Python tracker 

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



[issue33717] Enhance test.pythoninfo: meta-ticket for multiple changes

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue34285] regrtest: in case of test failure, add "always look on the bright side of life"

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> wont fix
stage:  -> resolved
status: open -> closed

___
Python tracker 

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



[issue33718] Enhance regrtest: meta-ticket for multiple changes

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue34639] PYTHONCOERCECLOCALE is ignored when using -E or -I option

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

The discussion moved back to bpo-34589.

--
resolution:  -> duplicate
stage:  -> resolved
status: open -> closed
superseder:  -> Py_Initialize() and Py_Main() should not enable C locale 
coercion

___
Python tracker 

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



[issue18174] Make regrtest with --huntrleaks check for fd leaks

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

I give up on that close. I closed my PR 7827 and PR 7966.

--
resolution:  -> wont fix
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue34745] asyncio ssl memory leak

2018-09-19 Thread Yury Selivanov


Yury Selivanov  added the comment:

What is "raw asyncio SSL sockets"? We don't use SSL sockets in asyncio, we use 
SSL Memory BIO.  Do you think that some SSL context objects aren't being 
properly released?

BTW, can you see the leak when run under uvloop?

--

___
Python tracker 

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



[issue34595] PyUnicode_FromFormat(): add %T format for an object type name

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

I close this issue until we can agree on an API.

--
resolution:  -> rejected
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue34605] Avoid master/slave terminology

2018-09-19 Thread Gabriel Marko


Change by Gabriel Marko :


--
nosy:  -suic

___
Python tracker 

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



[issue34744] New %(flag)s format specifier for argparse.add_argument help string

2018-09-19 Thread paul j3


paul j3  added the comment:

In your example, what is 'flag'?  There's no Action attribute of that name.  
There is a 'dest' and a 'option_strings' list.

All the 'help' '%(...)s' does is display one of the Action object attributes, 
the most common one is 'default'.

Try this:

a = parser.add_argument(...)
print(vars(a))

to see all the attributes of such an object.

--
nosy: +paul.j3

___
Python tracker 

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



[issue34660] Replace ableist terms and pejoratives in source code.

2018-09-19 Thread Gabriel Marko


Change by Gabriel Marko :


--
nosy:  -suic

___
Python tracker 

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



[issue34694] Dismiss To Avoid Slave/Master wording cause it easier for non English spoken programmers

2018-09-19 Thread Gabriel Marko


Change by Gabriel Marko :


--
nosy:  -suic

___
Python tracker 

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



[issue34745] asyncio ssl memory leak

2018-09-19 Thread Alexander Mohr


New submission from Alexander Mohr :

I've been trying to track down a leak in aiohttp: 
https://github.com/aio-libs/aiohttp/issues/3010

it seems like this leak now occurs with raw asyncio SSL sockets.

when the gist script is run like so: python3.7 `which mprof` run --interval=1 
~/dev/test_leak.py -test asyncio_test

it slowly leaks memory.  This is effectively doing the following:

URLS = {
'https://s3.us-west-2.amazonaws.com/archpi.dabase.com/style.css': {
'method': 'get',
'headers': {'User-Agent': 'Botocore/1.8.21 Python/3.6.4 Darwin/17.5.0', 
'X-Amz-Date': '20180518T025044Z', 'X-Amz-Content-SHA256': 
'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 
'Authorization': f'AWS4-HMAC-SHA256 
Credential={CREDENTIAL}/20180518/us-west-2/s3/aws4_request, 
SignedHeaders=host;x-amz-content-sha256;x-amz-date, 
Signature=ae552641b9aa9a7a267fcb4e36960cd5863e55d91c9b45fd39b30fdcd2e81489', 
'Accept-Encoding': 'identity'}
},

'https://s3.ap-southeast-1.amazonaws.com/archpi.dabase.com/doesnotexist': {
'method': 'GET' if sys.argv[1] == 'get_object' else 'HEAD',
'headers': {'User-Agent': 'Botocore/1.8.21 Python/3.6.4 Darwin/17.5.0', 
'X-Amz-Date': '20180518T025221Z', 'X-Amz-Content-SHA256': 
'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855', 
'Authorization': f'AWS4-HMAC-SHA256 
Credential={CREDENTIAL}/20180518/ap-southeast-1/s3/aws4_request, 
SignedHeaders=host;x-amz-content-sha256;x-amz-date, 
Signature=7a7675ef6d70cb647ed59e02d532ffa80d437fb03976d8246ea9ef102d118794', 
'Accept-Encoding': 'identity'}
}
}


class HttpClient(asyncio.streams.FlowControlMixin):
transport = None

def __init__(self, *args, **kwargs):
self.__url = kwargs.pop('url')
self.__logger = logging.getLogger()
super().__init__()

def connection_made(self, transport):
self.transport = transport

url_parts = urlparse(self.__url)
entry = URLS[self.__url]

body = f'{entry["method"]} {url_parts.path} HTTP/1.1\r\nAccept: 
*/*\r\nHost: {url_parts.hostname}\r\n'
for name, value in entry['headers'].items():
body += f'{name}: {value}\r\n'

body += '\r\n'
self.transport.write(body.encode('ascii'))
self.__logger.info(f'data sent: {body}')

def data_received(self, data):
self.__logger.info(f'data received: {data}')

self.transport.close()
# asyncio.get_event_loop().call_later(1.0, )

def eof_received(self):
self.__logger.info('eof_received')

def connection_lost(self, exc):
self.__logger.info(f'connection lost: {exc}')
super().connection_lost(exc)

@classmethod
def create_factory(cls, url: str):
def factory(*args, **kwargs):
return cls(*args, url=url, **kwargs)

return factory


async def test_asyncio(ssl_context):
loop = asyncio.get_event_loop()

url = 
'https://s3.ap-southeast-1.amazonaws.com/archpi.dabase.com/doesnotexist'
url_parts = urlparse(url)
port = url_parts.port or (80 if url_parts.scheme == 'http' else 443)
infos = await loop.getaddrinfo(url_parts.hostname, port, 
family=socket.AF_INET)
family, type, proto, canonname, sockaddr = infos[0]
await loop.create_connection(HttpClient.create_factory(url), sockaddr[0], 
port, ssl=ssl_context, family=family, proto=proto, flags=socket.AI_NUMERICHOST, 
server_hostname=url_parts.hostname, local_addr=None)


async def asyncio_test():
ssl_context = ssl.create_default_context()

while True:
await test_asyncio(ssl_context)


await asyncio_test()

--
components: asyncio
messages: 325811
nosy: asvetlov, thehesiod, yselivanov
priority: normal
severity: normal
status: open
title: asyncio ssl memory leak
type: resource usage
versions: Python 3.7

___
Python tracker 

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



[issue34732] uuid returns version more than 5

2018-09-19 Thread Berker Peksag


Berker Peksag  added the comment:

Thanks for the report and for the PRs. The approach in PR 9417 seems reasonable 
to me, but we need to add some tests for all supported platforms and fix the 
test_windll_getnode test.

I'm removing Python 3.6 from the versions list since it's nearly end of its 
bugfix maintenance period and fixing this relatively harmless bug may break 
people's code in the wild.

--
components: +Library (Lib)
nosy: +berker.peksag
type:  -> behavior
versions:  -Python 3.6

___
Python tracker 

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



[issue31958] UUID versions are not validated to lie in the documented range

2018-09-19 Thread Berker Peksag


Berker Peksag  added the comment:

Issue 34732 is actually a duplicate of this issue, but I'm going to close this 
one instead since the former has already two open pull requests. Thanks for the 
report!

--
nosy: +berker.peksag
resolution:  -> duplicate
stage:  -> resolved
status: open -> closed
superseder:  -> uuid returns version more than 5
type:  -> behavior

___
Python tracker 

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



[issue34742] Add optional argument for exit status in argparse.ArgumentParser.error

2018-09-19 Thread paul j3


Change by paul j3 :


--
nosy: +paul.j3

___
Python tracker 

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



[issue34724] argparse subparser help indent too short

2018-09-19 Thread paul j3


paul j3  added the comment:

Looks like I had my say on this in the Stackoverflow link (3 yrs ago).

--
nosy: +paul.j3

___
Python tracker 

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



[issue34663] Support POSIX_SPAWN_USEVFORK flag in posix_spawn

2018-09-19 Thread Gregory P. Smith


Gregory P. Smith  added the comment:

Agreed on not exposing it.

It seems obsolete in recent glibc and the older glibc implementations that had 
it may have made questionable decisions. :)

Thanks for chiming in Florian, and thanks Pablo for your detailed 
investigation. :)

--

___
Python tracker 

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



[issue34589] Py_Initialize() and Py_Main() should not enable C locale coercion

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:


New changeset 06e7608207daab9fb82d13ccf2d3664535442f11 by Victor Stinner in 
branch 'master':
Revert "bpo-34589: Add -X coerce_c_locale command line option (GH-9378)" 
(GH-9430)
https://github.com/python/cpython/commit/06e7608207daab9fb82d13ccf2d3664535442f11


--

___
Python tracker 

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



[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Yury Selivanov


Yury Selivanov  added the comment:

Closing this now, please reopen if there's still no search bar in a few hours.

--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Yury Selivanov


Yury Selivanov  added the comment:


New changeset 581890cda36f60cd46185c6e184abe35a95813a2 by Yury Selivanov in 
branch '3.7':
bpo-34733: Return of the docs search bar (GH-9431)
https://github.com/python/cpython/commit/581890cda36f60cd46185c6e184abe35a95813a2


--

___
Python tracker 

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



[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Yury Selivanov


Yury Selivanov  added the comment:

> Does master and 3.7 branch build the docs at different times? It's odd to me 
> that master still shows the search box and 3.7 does not.

layout.html was refactored in 3.8: scripts were moved into separate files.  I 
accidentally copied it from 3.8 to 3.7, where those new scripts are not 
available.

--

___
Python tracker 

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



[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Yury Selivanov


Change by Yury Selivanov :


--
keywords: +patch
pull_requests: +8848
stage:  -> patch review

___
Python tracker 

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



[issue34694] Dismiss To Avoid Slave/Master wording cause it easier for non English spoken programmers

2018-09-19 Thread Zachary Ware


Change by Zachary Ware :


--
assignee: docs@python -> 
nosy:  -docs@python, zach.ware

___
Python tracker 

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



[issue34589] Py_Initialize() and Py_Main() should not enable C locale coercion

2018-09-19 Thread STINNER Victor


Change by STINNER Victor :


--
pull_requests: +8847

___
Python tracker 

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



[issue34694] Dismiss To Avoid Slave/Master wording cause it easier for non English spoken programmers

2018-09-19 Thread Terry J. Reedy


Change by Terry J. Reedy :


--
nosy:  -terry.reedy

___
Python tracker 

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



[issue34694] Dismiss To Avoid Slave/Master wording cause it easier for non English spoken programmers

2018-09-19 Thread Terry J. Reedy


Terry J. Reedy  added the comment:

If this issue were not to be immediately closed, then cleaning the components 
and nosy lists should have been the first response.

I was tempted to do the latter now, to cut short the cavalcade of un-nosy 
emails, but anticipated that someone would object.  But I will remove myself 
again after this post.

Larry: Victor's recent issue and action pulled us further into a verbally 
violent and occasionally physically violent American Cultural war.  The result 
has already been pretty ugly.  We have been and will be attacked from 
extremists on both sides if consider changes on a case-by-case basis, accepting 
some and rejecting others.  I don't want the tracker ruined as a usable 
workspace.

We have been and will be attacked from extremists on both sides for considering 
changes on a case-by-case basis, accepting some and rejecting others.  On 
#34660, Raymond Hettinger merged one PR and I reviewed the other.  Marko called 
our actions 'madness' and here called us 'irresponsible'.  On the other hand, 
the OP criticized me for wanting change and huffed away with the claim that 
like it or not, we will somehow eventually be *forced* to change (as he 
wishes).  I do not volunteer for this sort of treatment.

--
nosy: +terry.reedy

___
Python tracker 

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



[issue34603] ctypes on Windows: error calling C function that returns a struct containing 3 bools

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:

Thanks MatteoL for the bug report, it has been fixed in 2.7, 3.6, 3.7 and 
master. Thanks Vladimir Matveev for the fix!

--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed

___
Python tracker 

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



[issue34603] ctypes on Windows: error calling C function that returns a struct containing 3 bools

2018-09-19 Thread STINNER Victor


STINNER Victor  added the comment:


New changeset b63a16febbd1c943c9dbc5c651326b410aa50698 by Victor Stinner 
(Vladimir Matveev) in branch '2.7':
[2.7] bpo-34603, ctypes/libffi_msvc: Fix returning structs from functions 
(GH-9258) (GH-9425)
https://github.com/python/cpython/commit/b63a16febbd1c943c9dbc5c651326b410aa50698


--

___
Python tracker 

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



[issue34712] Style fixes in examples of "Input and Output" tutorial section

2018-09-19 Thread Ned Deily


Ned Deily  added the comment:

Thanks for the improvement!

--
nosy: +ned.deily
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed
versions: +Python 3.7

___
Python tracker 

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



[issue34712] Style fixes in examples of "Input and Output" tutorial section

2018-09-19 Thread miss-islington


miss-islington  added the comment:


New changeset d9c89111bd82979ce8716f7ca68c69cf0f46e679 by Miss Islington (bot) 
in branch '3.7':
bpo-34712: Fix style in examples in "Input and Output" (GH-9361)
https://github.com/python/cpython/commit/d9c89111bd82979ce8716f7ca68c69cf0f46e679


--

___
Python tracker 

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



[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Julien Palard


Julien Palard  added the comment:

Thanks Yuri (and thanks for the rewrite!)

--

___
Python tracker 

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



[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Carol Willing


Carol Willing  added the comment:

Does master and 3.7 branch build the docs at different times? It's odd to me 
that master still shows the search box and 3.7 does not.

I'm getting on a flight soon. Yury would be a good person to ping re: changing.

--

___
Python tracker 

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



[issue32947] Support OpenSSL 1.1.1

2018-09-19 Thread Christian Heimes


Christian Heimes  added the comment:

Soonish, I'm still working on post handshake auth.

--

___
Python tracker 

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



[issue34733] Missing search bar on docs.python.org

2018-09-19 Thread Yury Selivanov


Yury Selivanov  added the comment:

Oh, this is a result of asyncio docs 3.8 -> 3.7 backport. I'll fix this.

--

___
Python tracker 

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



[issue34694] Dismiss To Avoid Slave/Master wording cause it easier for non English spoken programmers

2018-09-19 Thread Terry J. Reedy


Change by Terry J. Reedy :


--
nosy:  -terry.reedy

___
Python tracker 

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



[issue32947] Support OpenSSL 1.1.1

2018-09-19 Thread Kurt Roeckx


Kurt Roeckx  added the comment:

Christian,

Do you have any update on this? Any idea when we can expect relased python 
versions that work with OpenSSL 1.1.1?

--

___
Python tracker 

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



  1   2   3   >