[issue27902] pstats.Stats: strip_dirs() method cannot handle file paths from different OS

2018-06-04 Thread INADA Naoki


Change by INADA Naoki :


--
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



[issue31849] Python/pyhash.c warning: comparison of integers of different signs

2018-06-04 Thread INADA Naoki


Change by INADA Naoki :


--
resolution:  -> fixed
stage: patch review -> resolved
status: open -> closed
versions: +Python 3.6, Python 3.8

___
Python tracker 

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



[issue30167] site.main() does not work on Python 3.6 and superior if PYTHONSTARTUP is set

2018-06-04 Thread INADA Naoki


INADA Naoki  added the comment:

https://github.com/python/cpython/blob/f822549653d8d09b5b7dcddfdf12679a787c/Python/pythonrun.c#L391-L399

__file__ and __cached__ are added here.  And,

https://github.com/python/cpython/blob/f822549653d8d09b5b7dcddfdf12679a787c/Python/pythonrun.c#L441-L442

Only __file__ is removed here.  I feel __cached__ should be removed too.


On the other hand, if None is valid value for __cached__, site.abs_paths() 
should ignore it.

https://www.python.org/dev/peps/pep-3147/#file

> It is recommended that when nothing sensible can be calculated, 
> implementations should set the __cached__ attribute to None.

It seems it's valid, and recommended for some cases.  So PR-6731 looks OK.

--
nosy: +inada.naoki

___
Python tracker 

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



[issue32523] inconsistent spacing in changelog.html

2018-06-04 Thread Julien Palard


Julien Palard  added the comment:

> So, if news items followed that rule, would the css change still be necessary?

The CSS change would not be necessary, so yes the issue is "Don't mix 
paragraphs in changelogs".

Maybe we can add an option to blurb merge to only keep the first paragraph, to 
fix every list in a single shot, then better document the "a single paragraph 
per news entry"?

Would it be OK to edit old Misc/NEWS.d/ to fix it in the past?

--

___
Python tracker 

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



[issue29539] [smtplib] collect response data for all recipients

2018-06-04 Thread David Ford (FirefighterBlu3)


David Ford (FirefighterBlu3)  added the comment:

Yes, it is distinctly intended to collect the results for every recipient as in 
modern MTAs, there's more than just success/fail results. This is to collect 
data such as queue ID and the MTA's programmatic response for each individual 
recipient. I have several needs of knowing if the message was immediately 
relayed, queued for later because of a remote issue, queued because of MTA 
issue, graylisted or blocked because of milter reasons, or ... any of a list of 
failure reasons.

This data can be collected if there is only one recipient per message, but that 
is considerably resource expensive.

Without this patch, when sending to say 100 recipients, the only response 
returned to the caller is the very last (100th) result. A 250 then assumes that 
all 100 were transmitted successfully when in truth, the first 99 could have 
failed.

Yes, I'll make a PR, do the CLA, and add some tests.

--

___
Python tracker 

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



[issue28602] `tzinfo.fromutc()` fails when used for a fold-aware tzinfo implementation

2018-06-04 Thread Alexander Belopolsky


Change by Alexander Belopolsky :


--
stage:  -> needs patch
versions:  -Python 3.6, Python 3.7

___
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-06-04 Thread Mark Lawrence


Change by Mark Lawrence :


--
nosy:  -BreamoreBoy

___
Python tracker 

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



[issue17045] Improve C-API doc for PyTypeObject

2018-06-04 Thread Eric Snow


Eric Snow  added the comment:

I found some time to at least get the patch to apply cleanly to master and to 
make a PR. :)

--

___
Python tracker 

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



[issue17045] Improve C-API doc for PyTypeObject

2018-06-04 Thread Eric Snow


Change by Eric Snow :


--
pull_requests: +7038

___
Python tracker 

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



[issue33755] Failed separate tests in test_importlib

2018-06-04 Thread Barry A. Warsaw


Change by Barry A. Warsaw :


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

___
Python tracker 

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



[issue33768] IDLE: click on context line should jump to line, at top of window

2018-06-04 Thread Cheryl Sabella


Change by Cheryl Sabella :


--
keywords: +patch
pull_requests: +7036
stage: test needed -> patch review

___
Python tracker 

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



[issue33770] base64 throws 'incorrect padding' exception even though the string length is a multiple of 4

2018-06-04 Thread Dmitry


Dmitry  added the comment:

Ideally there needs to be an option to ignore non-fatal errors. Indeed, pretty 
much any string should be base64-decodeable. Take a look at Perl's MIME::Base64 
- it can decode pretty much any random string (so long as it only contains 
valid base64 characters).

--

___
Python tracker 

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



[issue33770] base64 throws 'incorrect padding' exception when the issue is NOT with the padding

2018-06-04 Thread Dmitry


Change by Dmitry :


--
title: base64 throws 'incorrect padding' exception even though the string 
length is a multiple of 4 -> base64 throws 'incorrect padding' exception when 
the issue is NOT with the padding

___
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-06-04 Thread STINNER Victor


Change by STINNER Victor :


--
pull_requests: +7035

___
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-06-04 Thread STINNER Victor


STINNER Victor  added the comment:


New changeset 270581905cab2747ae8f7ee945301d6a29509cc7 by Victor Stinner in 
branch '2.7':
bpo-18174: Fix file descriptor leaks in tests (GH-7408)
https://github.com/python/cpython/commit/270581905cab2747ae8f7ee945301d6a29509cc7


--

___
Python tracker 

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



[issue33609] Document that dicts preserve insertion order

2018-06-04 Thread Ned Deily


Ned Deily  added the comment:

Neil, that looks like a perfect opportunity to use the GitHub web interface to 
make that edit :)

--

___
Python tracker 

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



[issue33609] Document that dicts preserve insertion order

2018-06-04 Thread Neil Schemenauer


Neil Schemenauer  added the comment:

The wording sounds strange to me.  Currently it is:
> Note that updating key doesn't affects the order ...

I would say:
> Note that updating a key does not affect the order ...

--
nosy: +nascheme

___
Python tracker 

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



[issue33609] Document that dicts preserve insertion order

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset 8585ec9b761947aae6be5f653a5b9ddef2801d58 by Miss Islington (bot) 
in branch '3.7':
bpo-33609: Document dict insertion order guarantee as of 3.7 (GH-7093)
https://github.com/python/cpython/commit/8585ec9b761947aae6be5f653a5b9ddef2801d58


--
nosy: +miss-islington

___
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-06-04 Thread STINNER Victor


Change by STINNER Victor :


--
pull_requests: +7034

___
Python tracker 

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



[issue33770] base64 throws 'incorrect padding' exception even though the string length is a multiple of 4

2018-06-04 Thread R. David Murray


R. David Murray  added the comment:

I always assumed that any string composed of valid base64 characters could be 
decoded to *something* if you added some padding characters, but apparently 
that was an invalid assumption.  I agree that the message is incorrect for this 
case.

--
nosy: +r.david.murray
stage:  -> needs patch
type:  -> behavior
versions: +Python 2.7, Python 3.7, Python 3.8

___
Python tracker 

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



[issue33609] Document that dicts preserve insertion order

2018-06-04 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7033

___
Python tracker 

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



[issue33609] Document that dicts preserve insertion order

2018-06-04 Thread Ned Deily


Ned Deily  added the comment:


New changeset f822549653d8d09b5b7dcddfdf12679a787c by Ned Deily (INADA 
Naoki) in branch 'master':
bpo-33609: Document dict insertion order guarantee as of 3.7 (GH-7093)
https://github.com/python/cpython/commit/f822549653d8d09b5b7dcddfdf12679a787c


--

___
Python tracker 

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



[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Ned Deily


Ned Deily  added the comment:

With the workaround merged for 3.7.0rc1, I'm downgrading from "release blocker" 
to "high" since I believe Steve wants to keep this issue open for a possible 
compiler resolution.

--
priority: release blocker -> high

___
Python tracker 

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



[issue32523] inconsistent spacing in changelog.html

2018-06-04 Thread Ned Deily


Ned Deily  added the comment:

Thank you for looking into it!  In the example you chose, I think the first 
step would be to trim the two two-paragraph news items to be only one paragraph 
each; in general, news items should only be a few sentences at most.  With that 
change, I think the choice is pretty clear (to me, at least:): I prefer without 
the blank lines.  And the issue is that today the changelogs have a "random" 
mixture of both.  So, if news items followed that rule, would the css change 
still be necessary?

--

___
Python tracker 

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



[issue31234] Make support.threading_cleanup() stricter

2018-06-04 Thread STINNER Victor


STINNER Victor  added the comment:


New changeset 146351860a34b3cde387930a360e57391e7b99f3 by Victor Stinner in 
branch '2.7':
[2.7] bpo-31234: Join threads explicitly in tests (#7406)
https://github.com/python/cpython/commit/146351860a34b3cde387930a360e57391e7b99f3


--

___
Python tracker 

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



[issue32523] inconsistent spacing in changelog.html

2018-06-04 Thread Julien Palard


Julien Palard  added the comment:

An intermediate fix would be to remove only bottom of first paragraphs:

li p.first {
margin-bottom: 0;
}

It looks like: https://mdk.fr/list-intermediate.png

--

___
Python tracker 

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



[issue33768] IDLE: click on context line should jump to line, at top of window

2018-06-04 Thread Terry J. Reedy


Terry J. Reedy  added the comment:

Great.  I might try some timing experiments later.  I have seen both of the 
first 2 options above in use.

--

___
Python tracker 

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



[issue32523] inconsistent spacing in changelog.html

2018-06-04 Thread Julien Palard

Julien Palard  added the comment:

It's from docutils (see details below), it can be fixed in pydoctheme.css by 
adding something like:


li p {
margin-bottom: 0;
}

Would look like: https://mdk.fr/list-before.png → https://mdk.fr/list-after.png 
is it better? (If it's better I still have to ensure this rule won't break 
something else in another place.)


For more information I quote here the docstring of `class HTMLTranslator`:

The html4css1 writer has been optimized to produce visually compact
lists (less vertical whitespace).  HTML's mixed content models
allow list items to contain "body elements" or
"just text" or even "textand body
elementscombined", each with different effects.  It would
be best to stick with strict body elements in list items, but they
affect vertical spacing in older browsers (although they really
shouldn't).
The html5_polyglot writer solves this using CSS2.

Here is an outline of the optimization:

- Check for and omit  tags in "simple" lists: list items
  contain either a single paragraph, a nested simple list, or a
  paragraph followed by a nested simple list.  This means that
  this list can be compact:

  - Item 1.
  - Item 2.

  But this list cannot be compact:

  - Item 1.

This second paragraph forces space between list items.

  - Item 2.

- In non-list contexts, omit  tags on a paragraph if that
  paragraph is the only child of its parent (footnotes & citations
  are allowed a label first).

- Regardless of the above, in definitions, table cells, field bodies,
  option descriptions, and list items, mark the first child with
  'class="first"' and the last child with 'class="last"'.  The stylesheet
  sets the margins (top & bottom respectively) to 0 for these elements.

--

___
Python tracker 

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



[issue33725] High Sierra hang when using multi-processing

2018-06-04 Thread Ned Deily


Ned Deily  added the comment:

{Note: this is not particularly relevant to the issue here.)

Ronald:
> In the long run the macOS installers should be build using the latest SDK 
> [...] That's something that would require some effort though to ensure that 
> the resulting binary still works on older versions of macOS

I agree that being able to build with the latest SDK would be nice but it's 
also true it would require effort on our part, both one-time and ongoing, at 
least for every new macOS SDK release and update to test with each older 
system.  It would also require that the third-party libraries we build for an 
installer also behave correctly.  And to make full use of it, third-party 
Python packages with extension modules would also need to behave correctly.  I 
see one of the primary use cases for the python.org macOS installers as being 
for Python app developers who want to provide apps that run on a range of macOS 
releases.  It seems to me that the safest and simplest way to guarantee that 
python.org macOS Pythons fulfill that need is to continue to always build them 
on the oldest supported system.  Yes, that means that users may miss out on a 
few features only supported on the more recent macOS releases but I think 
that's the right trade-off until we have the resources to truly investigate
  and decide to support weak linking from current systems.

--

___
Python tracker 

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



[issue33694] test_asyncio: test_start_tls_server_1() fails on Python on x86 Windows7 3.7 and 3.x

2018-06-04 Thread STINNER Victor


STINNER Victor  added the comment:

> AMD64 Windows8.1 Non-Debug 3.x
> ERROR: test_create_connection_ssl_failed_certificate 
> (test.test_asyncio.test_sslproto.ProactorStartTLSTests)

Not surprising: same error on AMD64 Windows8.1 Non-Debug 3.7:
http://buildbot.python.org/all/#builders/133/builds/304

--

___
Python tracker 

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



[issue31234] Make support.threading_cleanup() stricter

2018-06-04 Thread STINNER Victor


Change by STINNER Victor :


--
pull_requests: +7032

___
Python tracker 

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



[issue29539] [smtplib] collect response data for all recipients

2018-06-04 Thread Barry A. Warsaw


Barry A. Warsaw  added the comment:

It's too late for 3.7, but something like this could be an interesting 
enhancement for 3.8.  I'm not so sure about the name of the suggested parameter 
since it seems more about recording successful deliveries in addition to the 
normally failed deliveries.  But we can quibble about that later.

Would you be willing and able to turn your patch into a pull request against 
our GitHub repo?  You would need to sign the CLA.  We're also going to want a 
test, some additional documentation, and a news entry.

See devguide.python.org for details.

--
versions: +Python 3.8 -Python 3.7

___
Python tracker 

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



[issue33694] test_asyncio: test_start_tls_server_1() fails on Python on x86 Windows7 3.7 and 3.x

2018-06-04 Thread STINNER Victor


STINNER Victor  added the comment:

A variant of the bug?

AMD64 Windows8.1 Non-Debug 3.x:
http://buildbot.python.org/all/#/builders/12/builds/948

==
ERROR: test_create_connection_ssl_failed_certificate 
(test.test_asyncio.test_sslproto.ProactorStartTLSTests)
--
Traceback (most recent call last):
  File 
"D:\buildarea\3.x.ware-win81-release\build\lib\test\test_asyncio\test_sslproto.py",
 line 623, in test_create_connection_ssl_failed_certificate
self.loop.run_until_complete(client(srv.addr))
  File "D:\buildarea\3.x.ware-win81-release\build\lib\asyncio\base_events.py", 
line 566, in run_until_complete
raise RuntimeError('Event loop stopped before Future completed.')
RuntimeError: Event loop stopped before Future completed.

--

___
Python tracker 

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



[issue33770] base64 throws 'incorrect padding' exception even though the string length is a multiple of 4

2018-06-04 Thread Dmitry


Dmitry  added the comment:

Apologies: apparently this particular string was given with one character 
missing in the beginning - should be 
"AAQAAQDhAAMAAQthJDczODFmZDM2LTNiOTYtNDVmYS04MjQ2LWRkYzJkMmViYjQ2YQ".

In this case, the problem is the exception itself: it's not an "incorrect 
padding" issue.

--

___
Python tracker 

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



[issue33755] Failed separate tests in test_importlib

2018-06-04 Thread Barry A. Warsaw


Barry A. Warsaw  added the comment:

Looks like a sys.modules leak.  I'm working on a branch.

--

___
Python tracker 

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



[issue33768] IDLE: click on context line should jump to line, at top of window

2018-06-04 Thread Cheryl Sabella


Cheryl Sabella  added the comment:

I'll try to have a PR for this by later today.

--

___
Python tracker 

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



[issue33640] [EASY DOC] uuid: endian of the bytes argument is not documented

2018-06-04 Thread STINNER Victor


STINNER Victor  added the comment:

Thank you Farhaan Bukhsh for your documentation enhancement! I applied your 
change to 2.7, 3.6, 3.7 and master branches.

--
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



[issue33770] base64 throws 'incorrect padding' exception even though the string length is a multiple of 4

2018-06-04 Thread Dmitry

Dmitry  added the comment:

It doesn’t matter how many “=“ characters are appended - it’s always throwing 
the same exception :(

--

___
Python tracker 

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



[issue33509] warnings.warn_explicit with module_globals=True raises a SystemError

2018-06-04 Thread STINNER Victor


STINNER Victor  added the comment:

> This test is failed with -We.

Thank you Serhiy for the bug report. It should now be fixed again.

--
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



[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset 103058e19bea48f4a80afde51df04338a753e952 by Miss Islington (bot) 
in branch '3.7':
bpo-33720: Reduces maximum marshal recursion depth on release builds. (GH-7401)
https://github.com/python/cpython/commit/103058e19bea48f4a80afde51df04338a753e952


--
nosy: +miss-islington

___
Python tracker 

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



[issue33770] base64 throws 'incorrect padding' exception even though the string length is a multiple of 4

2018-06-04 Thread Mark Dickinson


Mark Dickinson  added the comment:

This doesn't look like a valid base64 string to me: the padding (if present) at 
the end of the string should be either "=" or "==", never "===".

Is the length of the decoded string equal to 58? If so, what's the last 
character of that decoded string? Whatever it is, it should end up being 
encoded as "xx==" (for some values of "x"), not as "Q===".

--
nosy: +mark.dickinson

___
Python tracker 

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



[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Steve Dower


Steve Dower  added the comment:

Thanks. I merged, and miss-islington is backporting it. I guess at this stage 
you're manually cherry-picking into your own 3.7 branch for release? I'll merge 
for 3.7.1 though.

--

___
Python tracker 

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



[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Ned Deily


Ned Deily  added the comment:

> I guess at this stage you're manually cherry-picking into your own 3.7 branch 
> for release?

No, not until 3.7.0rc1 next week.  No need to cherry pick.  Thanks!

--

___
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-06-04 Thread STINNER Victor


STINNER Victor  added the comment:


New changeset a30d587eb55cbf3b9af65b9883e87c1255ecba75 by Victor Stinner in 
branch '2.7':
[2.7] bpo-33718: Update regrtest from master (GH-7402)
https://github.com/python/cpython/commit/a30d587eb55cbf3b9af65b9883e87c1255ecba75


--

___
Python tracker 

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



[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Steve Dower


Steve Dower  added the comment:


New changeset 2a4a62ba4ae770bbc7b7fdec0760031c83fe1f7b by Steve Dower in branch 
'master':
bpo-33720: Reduces maximum marshal recursion depth on release builds. (GH-7401)
https://github.com/python/cpython/commit/2a4a62ba4ae770bbc7b7fdec0760031c83fe1f7b


--

___
Python tracker 

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



[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7031

___
Python tracker 

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



[issue33615] test__xxsubinterpreters crashed on x86 Gentoo Refleaks 3.x

2018-06-04 Thread Pablo Galindo Salgado


Pablo Galindo Salgado  added the comment:

Same error in AMD64 Windows10 3.x:

http://buildbot.python.org/all/#/builders/3/builds/941

--

___
Python tracker 

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



[issue33770] base64 throws 'incorrect padding' exception even though the string length is a multiple of 4

2018-06-04 Thread Dmitry


New submission from Dmitry :

All base64 decoding methods fail to decode a valid base64 string, throwing 
'incorrect padding' regardless of the string padding.

Here's an example:

>>> base64.urlsafe_b64decode('AQAAQDhAAMAAQthJDczODFmZDM2LTNiOTYtNDVmYS04MjQ2LWRkYzJkMmViYjQ2YQ===')
Traceback (most recent call last):
  File "", line 1, in 
  File "/export/apps/python/3.6/lib/python3.6/base64.py", line 133, in 
urlsafe_b64decode
return b64decode(s)
  File "/export/apps/python/3.6/lib/python3.6/base64.py", line 87, in b64decode
return binascii.a2b_base64(s)
binascii.Error: Incorrect padding

The same string gets decoded without any issues using Perl's MIME::Base64 
module or Java. So far Python's base64 module is the only one that fails to 
decode it.

--
components: Extension Modules
messages: 318691
nosy: dniq
priority: normal
severity: normal
status: open
title: base64 throws 'incorrect padding' exception even though the string 
length is a multiple of 4
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



[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Ned Deily


Ned Deily  added the comment:

Steve, I'm OK with the proposed reduction as a workaround.  We have other 
platform- and build-specific limits based on stack sizes etc.  It's hard to 
have one-size-fits-all.

--

___
Python tracker 

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



[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Steve Dower


Steve Dower  added the comment:

Ned - PR 7401 fixes the crash at the cost of reducing the permitted recursion 
depth in marshal.

Your call whether we take this fix or disable PGO, but I'd much rather take 
this fix (PGO has full-interpreter effects whereas this is very narrow). When I 
hear back about the compiler bug - if it is one - we should be able to raise 
the limit again without causing any compatibility issues.

--

___
Python tracker 

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



[issue33769] Cleanup start_tls() implementation

2018-06-04 Thread Yury Selivanov


Change by Yury Selivanov :


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

___
Python tracker 

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



[issue33769] Cleanup start_tls() implementation

2018-06-04 Thread Yury Selivanov


New submission from Yury Selivanov :

Current start_tls() implementation might raise an incorrect error message.  It 
should also consistently cancel callbacks that it schedules in case of 
unhandled error.

--
assignee: yselivanov
components: asyncio
messages: 318688
nosy: asvetlov, yselivanov
priority: normal
severity: normal
status: open
title: Cleanup start_tls() implementation
type: enhancement
versions: Python 3.7, Python 3.8

___
Python tracker 

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



[issue33394] the build of the shared modules is quiet/non-visible when GNU make gets passed macros

2018-06-04 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7029

___
Python tracker 

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



[issue27902] pstats.Stats: strip_dirs() method cannot handle file paths from different OS

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset 134bb46db706416d76d03c0af6018372f35be06f by Miss Islington (bot) 
in branch '2.7':
bpo-27902: Add compatibility note to Profile docs (GH-7295)
https://github.com/python/cpython/commit/134bb46db706416d76d03c0af6018372f35be06f


--

___
Python tracker 

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



[issue31849] Python/pyhash.c warning: comparison of integers of different signs

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset 150033d1599f55c10860a733d370707a3f7c444e by Miss Islington (bot) 
in branch '3.7':
bpo-31849: Fix warning in pyhash.c (GH-6799)
https://github.com/python/cpython/commit/150033d1599f55c10860a733d370707a3f7c444e


--

___
Python tracker 

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



[issue27902] pstats.Stats: strip_dirs() method cannot handle file paths from different OS

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset 889a1ef6833d47cc732c291852602b5fc8d5fde7 by Miss Islington (bot) 
in branch '3.6':
bpo-27902: Add compatibility note to Profile docs (GH-7295)
https://github.com/python/cpython/commit/889a1ef6833d47cc732c291852602b5fc8d5fde7


--

___
Python tracker 

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



[issue27902] pstats.Stats: strip_dirs() method cannot handle file paths from different OS

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset 7548a9327409df787eef5f8c2780b53b5788012f by Miss Islington (bot) 
in branch '3.7':
bpo-27902: Add compatibility note to Profile docs (GH-7295)
https://github.com/python/cpython/commit/7548a9327409df787eef5f8c2780b53b5788012f


--
nosy: +miss-islington

___
Python tracker 

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



[issue33509] warnings.warn_explicit with module_globals=True raises a SystemError

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset d2c6ecc234e705b60cbcbb9dd4c99022407d0dd0 by Miss Islington (bot) 
in branch '3.7':
bpo-33509: Fix test_warnings for python3 -Werror (GH-7365)
https://github.com/python/cpython/commit/d2c6ecc234e705b60cbcbb9dd4c99022407d0dd0


--

___
Python tracker 

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



[issue33640] [EASY DOC] uuid: endian of the bytes argument is not documented

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset 5f0726a3813dd9873e10690e708f8da9ede9502e by Miss Islington (bot) 
in branch '2.7':
bpo-33640, uuid.UUID doc: document endian of bytes parameter (GH-7263)
https://github.com/python/cpython/commit/5f0726a3813dd9873e10690e708f8da9ede9502e


--

___
Python tracker 

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



[issue33761] Leaked file in test_iterparse in test_xml_etree

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset a7de1483c28eb818135a8c9a2e414e3a1d0fe648 by Miss Islington (bot) 
in branch '3.6':
bpo-33761: Fix a file leak in test_iterparse in test_xml_etree. (GH-7358)
https://github.com/python/cpython/commit/a7de1483c28eb818135a8c9a2e414e3a1d0fe648


--

___
Python tracker 

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



[issue33640] [EASY DOC] uuid: endian of the bytes argument is not documented

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset 6a43d5f4fb3a83815bf7c2f157773a3b0d8f59b3 by Miss Islington (bot) 
in branch '3.6':
bpo-33640, uuid.UUID doc: document endian of bytes parameter (GH-7263)
https://github.com/python/cpython/commit/6a43d5f4fb3a83815bf7c2f157773a3b0d8f59b3


--

___
Python tracker 

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



[issue33640] [EASY DOC] uuid: endian of the bytes argument is not documented

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset 1cdd0e71ecba53ab60080958c24193c27c3adee2 by Miss Islington (bot) 
in branch '3.7':
bpo-33640, uuid.UUID doc: document endian of bytes parameter (GH-7263)
https://github.com/python/cpython/commit/1cdd0e71ecba53ab60080958c24193c27c3adee2


--
nosy: +miss-islington

___
Python tracker 

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



[issue31849] Python/pyhash.c warning: comparison of integers of different signs

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset 4251d2a3540bf7a23949c7fafad64b796585674a by Miss Islington (bot) 
in branch '3.6':
bpo-31849: Fix warning in pyhash.c (GH-6799)
https://github.com/python/cpython/commit/4251d2a3540bf7a23949c7fafad64b796585674a


--
nosy: +miss-islington

___
Python tracker 

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



[issue33745] 3.7.0b5 changes the line number of empty functions with docstrings

2018-06-04 Thread Ned Deily


Ned Deily  added the comment:

Setting to deferred blocker for evaluation

--
nosy: +inada.naoki, ncoghlan, ned.deily
priority: normal -> deferred blocker
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



[issue33763] IDLE: Use text widget for code context instead of label widget

2018-06-04 Thread Terry J. Reedy


Terry J. Reedy  added the comment:

I believe the colorizer would need some new code, maybe in a subclass, but it 
should be possible.  I would not know if I liked it until we tried it ;-).

--
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



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

2018-06-04 Thread STINNER Victor


Change by STINNER Victor :


--
pull_requests: +7028

___
Python tracker 

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



[issue33664] IDLE: scroll text by lines, not pixels.

2018-06-04 Thread Terry J. Reedy


Terry J. Reedy  added the comment:

I checked that with the patch, the wwindow top stayed synchronized with the 
text after multiple movement operations of different types.

The minimum requirement for correct operation of the scrollbar slider is that 
moving the slider to the top and bottom of its trough moves the text to the top 
and bottom of the file.  Before merging, I checked with editor.py, about 3000 
lines, and a new editor with just a couple more lines than the window size.

It is desireable that each pixel movement of the slider move the text.  This 
requires that there be at least as many hidden lines in the text as there are 
exposed pixel in the slider trough.  I don't know that this will always be true 
on all systems.   As near as I could tell with editor.py, which meets this 
requirement, moving the slider a pixel away from top or bottom also moved the 
text.  (I can't move a single pixel, so it was more a matter that moving 2 or 3 
pixels made 2 or 3 jumps ;-)

I considered these tests enough for now to merge.

--
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



[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread Ned Deily


Ned Deily  added the comment:

Thanks for the fix!  Since it apparently does not apply to 3.6, we should just 
close it like any other issue, right?  So doing!

--
priority: release blocker -> 
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



[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread Ned Deily


Ned Deily  added the comment:

> My understanding is that all changes including this one in 3.7 branch will 
> end up in 3.7.0rc1, right?

Yes.  Don't worry, the train won't leave without it.

--

___
Python tracker 

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



[issue33742] Unsafe memory access in PyStructSequence_InitType

2018-06-04 Thread Pasha Stetsenko


Pasha Stetsenko  added the comment:

The code is simple:
```
// first initialize PyStructSequence_Field* fields; then:
PyTypeObject* type = malloc(sizeof(PyTypeObject));
PyStructSequence_InitType(type, desc);
```

Of course, `malloc` can accidentally allocate memory that is already filled 
with 0s (especially if it is run at the start of the program). So in order to 
make the code exhibit the bug reliably, you can add
```
memset(type, 0xDA, sizeof(PyTypeObject));
```
after the `malloc`.

--

___
Python tracker 

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



[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread Yury Selivanov


Yury Selivanov  added the comment:

> Since it apparently does not apply to 3.6, we should just close it like any 
> other issue, right?  So doing!

Sure.  My understanding is that all changes including this one in 3.7 branch 
will end up in 3.7.0rc1, right?

--

___
Python tracker 

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



[issue33763] IDLE: Use text widget for code context instead of label widget

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset b7eb1024d06e51598fc8a19ed6e22b91120c6a1e by Miss Islington (bot) 
in branch '3.7':
bpo-33763: IDLE: Replace label widget with text widget in code context (GH-7367)
https://github.com/python/cpython/commit/b7eb1024d06e51598fc8a19ed6e22b91120c6a1e


--

___
Python tracker 

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



[issue33763] IDLE: Use text widget for code context instead of label widget

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset ffe29dbcd96dc2fbda212f8335908fa1bc8ed893 by Miss Islington (bot) 
in branch '3.6':
bpo-33763: IDLE: Replace label widget with text widget in code context (GH-7367)
https://github.com/python/cpython/commit/ffe29dbcd96dc2fbda212f8335908fa1bc8ed893


--
nosy: +miss-islington

___
Python tracker 

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



[issue33527] Invalid child function scope

2018-06-04 Thread R. David Murray


Change by R. David Murray :


--
resolution:  -> not a bug
stage: test 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



[issue33664] IDLE: scroll text by lines, not pixels.

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset db96871765d76dedb06cace8fa393678ae56 by Miss Islington (bot) 
in branch '3.6':
bpo-33664: Scroll IDLE editor text by lines (GH-7351)
https://github.com/python/cpython/commit/db96871765d76dedb06cace8fa393678ae56


--

___
Python tracker 

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



[issue33720] test_marshal: crash in Python 3.7b5 on Windows 10

2018-06-04 Thread Steve Dower


Change by Steve Dower :


--
pull_requests: +7027

___
Python tracker 

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



[issue33766] Grammar Incongruence

2018-06-04 Thread Guido van Rossum


Guido van Rossum  added the comment:

I am fine with adding this to the docs. But the irony of the case is that the 
echo command adds a newline, so the original premise (that test.py contains an 
invalid program) is incorrect. ;-)

--

___
Python tracker 

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



[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread Yury Selivanov


Yury Selivanov  added the comment:

Fixes are in master and 3.7 now, so this should be fixed in 3.7.0rc1.  

Ned, I'm not sure what's the workflow here, please feel free to close this 
issue and change its priority.

--

___
Python tracker 

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



[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread Yury Selivanov


Yury Selivanov  added the comment:


New changeset 87936d03cb29ca039c5799190e8da764e62b7882 by Yury Selivanov (Miss 
Islington (bot)) in branch '3.7':
bpo-33734: asyncio/ssl: a bunch of bugfixes (GH-7321) (GH-7396)
https://github.com/python/cpython/commit/87936d03cb29ca039c5799190e8da764e62b7882


--

___
Python tracker 

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



[issue33763] IDLE: Use text widget for code context instead of label widget

2018-06-04 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7026

___
Python tracker 

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



[issue33664] IDLE: scroll text by lines, not pixels.

2018-06-04 Thread miss-islington


miss-islington  added the comment:


New changeset cfc12ec68c3f90ebd94bc47d14d18b7217850391 by Miss Islington (bot) 
in branch '3.7':
bpo-33664: Scroll IDLE editor text by lines (GH-7351)
https://github.com/python/cpython/commit/cfc12ec68c3f90ebd94bc47d14d18b7217850391


--
nosy: +miss-islington

___
Python tracker 

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



[issue33763] IDLE: Use text widget for code context instead of label widget

2018-06-04 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7025

___
Python tracker 

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



[issue33763] IDLE: Use text widget for code context instead of label widget

2018-06-04 Thread Terry J. Reedy


Terry J. Reedy  added the comment:


New changeset b609e687a076d77bdd687f5e4def85e29a044bfc by Terry Jan Reedy 
(Cheryl Sabella) in branch 'master':
bpo-33763: IDLE: Replace label widget with text widget in code context (GH-7367)
https://github.com/python/cpython/commit/b609e687a076d77bdd687f5e4def85e29a044bfc


--

___
Python tracker 

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



[issue33664] IDLE: scroll text by lines, not pixels.

2018-06-04 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7023

___
Python tracker 

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



[issue33664] IDLE: scroll text by lines, not pixels.

2018-06-04 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7024

___
Python tracker 

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



[issue33664] IDLE: scroll text by lines, not pixels.

2018-06-04 Thread Terry J. Reedy


Terry J. Reedy  added the comment:


New changeset d49dbd9acc6db544ca6cb2445fe17eb0c3be4bba by Terry Jan Reedy 
(Cheryl Sabella) in branch 'master':
bpo-33664: Scroll IDLE editor text by lines (GH-7351)
https://github.com/python/cpython/commit/d49dbd9acc6db544ca6cb2445fe17eb0c3be4bba


--

___
Python tracker 

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



[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread miss-islington


Change by miss-islington :


--
pull_requests: +7022

___
Python tracker 

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



[issue33734] asyncio/ssl: Fix AttributeError, increase default handshake timeout

2018-06-04 Thread Yury Selivanov


Yury Selivanov  added the comment:


New changeset 9602643120a509858d0bee4215d7f150e6125468 by Yury Selivanov in 
branch 'master':
bpo-33734: asyncio/ssl: a bunch of bugfixes (#7321)
https://github.com/python/cpython/commit/9602643120a509858d0bee4215d7f150e6125468


--

___
Python tracker 

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



[issue33615] test__xxsubinterpreters crashed on x86 Gentoo Refleaks 3.x

2018-06-04 Thread Eric Snow


Eric Snow  added the comment:

FTR, bpo-33724 is related

--

___
Python tracker 

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



[issue17045] Improve C-API doc for PyTypeObject

2018-06-04 Thread Eric Snow


Eric Snow  added the comment:

I'll definitely take a look.  It might not be until Friday though.

--

___
Python tracker 

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



[issue33336] [imaplib] MOVE is a legal command

2018-06-04 Thread STINNER Victor


STINNER Victor  added the comment:

Should we also add the MOVE command to Python 2.7, 3.6 and 3.7? The change 
looks safe and trivial.

--

___
Python tracker 

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



[issue33336] [imaplib] MOVE is a legal command

2018-06-04 Thread STINNER Victor


STINNER Victor  added the comment:

https://tools.ietf.org/html/rfc6851
Internet Message Access Protocol (IMAP) - MOVE Extension
January 2013

--
nosy: +vstinner

___
Python tracker 

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



[issue21142] Daily/weekly ABI scan?

2018-06-04 Thread Eric Snow


Eric Snow  added the comment:

That email thread contains multiple references to scripts that may be used to 
identify ABI issues, among other good points.  FWIW, when consolidating the C 
globals last year I added a tool to track the remaining globals:

  Tools/c-globals

It is similar (at least in intent) to any solution we might pursue relative to 
the stable ABI.

--

___
Python tracker 

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



[issue21142] Daily/weekly ABI scan?

2018-06-04 Thread Eric Snow


Eric Snow  added the comment:

FTR, the issue of ABI breakage has come up quite a few times on the mailing 
list.  Most recently:

  https://mail.python.org/pipermail/python-dev/2018-June/153775.html

--

___
Python tracker 

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



[issue33724] test__xxsubinterpreters failed on ARMv7 Ubuntu 3.x

2018-06-04 Thread Eric Snow


Eric Snow  added the comment:

Sorry for any confusion.  This issue is still resolved.  It is bpo-33615 that 
had an unexpected recurrence.  I've re-opened that one.

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

___
Python tracker 

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



[issue33615] test__xxsubinterpreters crashed on x86 Gentoo Refleaks 3.x

2018-06-04 Thread Eric Snow


Eric Snow  added the comment:

This appears to be recurring on the "x86 Gentoo Refleaks 3.x" builder still.  I 
was thrown off by the success of the first run after I landed my fix:

http://buildbot.python.org/all/#/builders/1/builds/241

FYI, the other buildbots having this issue before (e.g. "ARMv7 Ubuntu 3.x") are 
still passing.

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

___
Python tracker 

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



[issue33764] AppVeyor builds interrupted before tests complete

2018-06-04 Thread Steve Dower


Steve Dower  added the comment:

Are we sure we haven't actually regressed something here and it's actually 
taking more resources? I can't tell from this discussion if it's memory CPU, 
disk or time that we're hitting problems.

I'll have to look at the VSTS build history to see whether it needs to be 
disabled there too. I haven't been watching much over the last week.

--

___
Python tracker 

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



[issue5755] "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++"

2018-06-04 Thread Jeroen Demeyer


Jeroen Demeyer  added the comment:

> 2.7 doesn't have CFLAGS_NODIST

I meant backporting this patch as-is to 2.7 without adding -Wstrict-prototypes 
to CFLAGS_NODIST

--

___
Python tracker 

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



[issue5755] "-Wstrict-prototypes" is valid for Ada/C/ObjC but not for C++"

2018-06-04 Thread INADA Naoki


INADA Naoki  added the comment:

2.7 doesn't have CFLAGS_NODIST and I don't have motivation to manually backport 
it to 2.7.  (I'm not expert of autotools)

--

___
Python tracker 

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



[issue19982] Add a "target" parameter to runpy.run_path and runpy.run_module

2018-06-04 Thread Nick Coghlan


Change by Nick Coghlan :


--
versions: +Python 3.8 -Python 3.7

___
Python tracker 

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



  1   2   >