[issue46548] macOS installers cannot be signed on Monterey

2022-01-29 Thread Yair Frid


Yair Frid  added the comment:

Apple builds python on their own, so probably you wont have any luck finding 
the build scripts

--
nosy: +Fongeme

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



[issue42878] urllib.request.HTTPPasswordMgr.is_suburi does not care about order

2021-07-06 Thread Yair Frid


Yair Frid  added the comment:

This issue was discovered when i was writing unit tests for #42766, since 
#42766 was fixed when i discovered it, i realized i might want a new issue, i 
don't mind moving this to be a comment, but there *are* 2 distinct test cases 
that fail:

a test case that would fail here:
is_suburi('/foo/bar', '/bar/foo') == True
which is different than;
is_suburi('/foo/bar', '/foobar') == True

--

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



[issue42811] Update docs for importlib.util.resolve_name() to use __spec__ instead of __package__

2021-01-04 Thread Yair Frid


Change by Yair Frid :


--
keywords: +patch
nosy: +Fongeme
nosy_count: 1.0 -> 2.0
pull_requests: +22931
stage: needs patch -> patch review
pull_request: https://github.com/python/cpython/pull/24100

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



[issue42811] Update docs for importlib.util.resolve_name() to use __spec__.parent instead of __package__

2021-01-07 Thread Yair Frid


Change by Yair Frid :


--
pull_requests: +22977
pull_request: https://github.com/python/cpython/pull/24149

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



[issue42766] urllib.request.HTTPPasswordMgr uses commonprefix instead of commonpath

2021-01-09 Thread Yair Frid


Change by Yair Frid :


--
keywords: +patch
nosy: +Fongeme
nosy_count: 1.0 -> 2.0
pull_requests: +23007
stage:  -> patch review
pull_request: https://github.com/python/cpython/pull/24181

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



[issue42878] urllib.request.HTTPPasswordMgr.is_suburi does not care about order

2021-01-09 Thread Yair Frid


New submission from Yair Frid :

In docs, it mentions that the function returns true if the base is a 'suburi' 
of test, but in reality, if is_suburi(base, test) then is_suburi(test, base) 
which is wrong in most cases (other than where base ~= test, meaning they are 
the same location)
I am unsure which versions of python are affected, but i suspect most of them 
(although we probably shouldn't backport this fix?)

--
components: Library (Lib)
messages: 384741
nosy: Fongeme
priority: normal
pull_requests: 23009
severity: normal
status: open
title: urllib.request.HTTPPasswordMgr.is_suburi does not care about order

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