[issue37065] File and lineno is not reported for syntax error in f-string

2019-05-27 Thread SilentGhost
Change by SilentGhost : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> problem with traceback for syntax error in f-string ___ Python tracker <https://bugs.python

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-05-27 Thread SilentGhost
Change by SilentGhost : -- type: -> enhancement ___ Python tracker <https://bugs.python.org/issue37064> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue37059] spam

2019-05-26 Thread SilentGhost
Change by SilentGhost : -- nosy: -erika1998 title: Pre-compile Directive to Remind Coders that Men are Pigs -> spam ___ Python tracker <https://bugs.python.org/issu

[issue37059] spam

2019-05-26 Thread SilentGhost
Change by SilentGhost : -- Removed message: https://bugs.python.org/msg343580 ___ Python tracker <https://bugs.python.org/issue37059> ___ ___ Python-bugs-list m

[issue37057] suspicious.py sphinx extension access non-existing attribute.

2019-05-26 Thread SilentGhost
Change by SilentGhost : -- superseder: -> inconsistencies in docs builds (Sphinx 2) ___ Python tracker <https://bugs.python.org/issue37057> ___ ___ Python-

[issue27639] UserList.__getitem__ doesn't account for slices

2019-05-26 Thread SilentGhost
Change by SilentGhost : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue37057] suspicious.py sphinx extension access non-existing attribute.

2019-05-26 Thread SilentGhost
SilentGhost added the comment: This looks like a duplicate of #36853. Do you happen to have sphinx 2 installed? -- assignee: -> docs@python components: +Documentation nosy: +SilentGhost, docs@python ___ Python tracker <https://bugs.pyth

[issue37049] Implement PEP 589: add TypedDict to typing

2019-05-26 Thread SilentGhost
SilentGhost added the comment: Either 135c6a56e55d2f4f8718b3b9f03ce3c692b15f0f or b891c465bb7d38a597c5c2ad547d7b19194f4dad (#37046) broke the build. Lib/test/test_typing.py does not round-trip. -- nosy: +SilentGhost ___ Python tracker <ht

[issue37048] ssl module: QUIC support for HTTP/3

2019-05-25 Thread SilentGhost
Change by SilentGhost : -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.org/issue37048> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37040] checking for membership in itertools.count enters infinite loop with no way to exit

2019-05-25 Thread SilentGhost
Change by SilentGhost : -- nosy: -SilentGhost ___ Python tracker <https://bugs.python.org/issue37040> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37040] checking for membership in itertools.count enters infinite loop with no way to exit

2019-05-25 Thread SilentGhost
SilentGhost added the comment: This seem like a misdirected expectation. count returns a regular iterator and the purpose behind it is not to enable membership checks, this only works because it's a regular iterators and normal rules for checking membership are applied. In any case

[issue37033] Dictionary defaults .get(), .pop(), .setdefault()

2019-05-24 Thread SilentGhost
Change by SilentGhost : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue37033> ___ ___

[issue37019] Create symlinks relative to cwd

2019-05-24 Thread SilentGhost
SilentGhost added the comment: Shannon, what you're suggesting is prone to the same issue (creating a broken symlink) if a given destination does not exist relative to cwd. I think your current solution is better as it explicitly provides the paths, but it's not generalised enough

[issue27860] Improvements to ipaddress module

2019-05-24 Thread SilentGhost
SilentGhost added the comment: I was wondering why it was decided against backporting to 3.7? 6fa84bd12c4b83bee6a41b989363230d5c03b96c fixes an actual bug #35990 (string mask in tuple argument for IPv4Interfaces). Incidentally, there are also no tests for this behaviour. Just to note: both

[issue35990] ipaddress.IPv4Interface won't accept 2-tuple (address, mask)

2019-05-24 Thread SilentGhost
SilentGhost added the comment: This seems to have been fixed in #27860 (in master) particularly 6fa84bd12c4b83bee6a41b989363230d5c03b96c. I'm not sure why it was decided against backporting to 3.7 as no new features were introduced, but it's perhaps better to raise this question

[issue37020] Invalid floating point multiplication result

2019-05-23 Thread SilentGhost
SilentGhost added the comment: This is a limitation of floating points representation. If you need objects representing decimal numeral, you could use decimal module. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -&g

[issue37019] Create symlinks relative to cwd

2019-05-23 Thread SilentGhost
SilentGhost added the comment: This would be backward incompatible change. I just wanted to point out that the symlink was only broken because the file did not exist, and one might want to legitimately create a link relative to the target's location. I'd imagine creating a link in the same

[issue36981] asyncio transport.write() memory out

2019-05-22 Thread SilentGhost
Change by SilentGhost : -- resolution: fixed -> not a bug stage: -> resolved status: -> closed ___ Python tracker <https://bugs.python.org/issue36981> ___ ___

[issue36759] datetime: astimezone() results in OSError: [Errno 22] Invalid argument

2019-05-19 Thread SilentGhost
SilentGhost added the comment: I'm going to close this issue as a duplicate of #29097. If you're still experience this problem on python3.7, please re-open. -- resolution: -> duplicate stage: -> resolved status: pending -> closed superseder: -> [Windows] datetime.fro

[issue36964] `python3 -m venv NAME`: virtualenv is not portable

2019-05-19 Thread SilentGhost
Change by SilentGhost : -- nosy: +vinay.sajip versions: +Python 3.8 -Python 3.9 ___ Python tracker <https://bugs.python.org/issue36964> ___ ___ Python-bugs-list m

[issue36965] use of STATUS_CONTROL_C_EXIT in Modules/main.c breaks compilation with non MSC compilers

2019-05-19 Thread SilentGhost
Change by SilentGhost : -- nosy: +vstinner ___ Python tracker <https://bugs.python.org/issue36965> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36955] Python3 - mulltiprocessing

2019-05-18 Thread SilentGhost
SilentGhost added the comment: multiprocessing module that is available on PyPi is a backport of stdlib module to python 2.4 and 2.5. multiprocessing module is available in stdlib for all version after that, so you don't need to install it with pip. -- nosy: +SilentGhost resolution

[issue36928] linkt threading.settrace to sys.settrace

2019-05-17 Thread SilentGhost
Change by SilentGhost : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue36930] Windows proxy settings automatically used ... partly

2019-05-16 Thread SilentGhost
Change by SilentGhost : -- versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue36930> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36930] Windows proxy settings automatically used ... partly

2019-05-16 Thread SilentGhost
SilentGhost added the comment: Immo, please be careful when editing the fields. You've set the values that were explicitly removed by the developer. Library is fine. -- assignee: terry.reedy -> components: -IDLE, IO nosy: +SilentGhost, orsenthil -terry.reedy type: -> be

[issue36928] linkt threading.settrace to sys.settrace

2019-05-15 Thread SilentGhost
SilentGhost added the comment: Would you care to submit a PR implementing this fix? There are some guidelines available at https://devguide.python.org/pullrequest/ -- nosy: +SilentGhost stage: -> needs patch type: -> behavior versions: +Python 3.7 -Pyth

[issue36927] traceback docstrings should explicitly state return values instead of referring to other functions

2019-05-15 Thread SilentGhost
SilentGhost added the comment: The doc strings were never updated in #17911. Would you like to submit a PR for these changes? (guidelines are available at https://devguide.python.org/pullrequest/) Perhaps, you could include similar changes in Doc/library/traceback.rst ? -- nosy

[issue36923] Implemented __str__ for zip and map objects

2019-05-15 Thread SilentGhost
SilentGhost added the comment: This would exhaust the object, seems like a rather unfortunate side effect. I don't think this suggestion has any chance of being accepted, do feel free to take it to python-ideas to demonstrate that benefits outweigh the downsides. -- nosy

[issue36919] Exception from 'compile' reports a newline char not present in input

2019-05-15 Thread SilentGhost
SilentGhost added the comment: I don't think a roundtrip is guaranteed by the parser, only producing an equivalent input. -- nosy: +SilentGhost, benjamin.peterson, brett.cannon, yselivanov title: Exception form 'compile' reports a newline char not present in input -> Exception f

[issue36920] inspect.getcallargs sees optional arg to builtin as required

2019-05-15 Thread SilentGhost
Change by SilentGhost : -- nosy: +yselivanov ___ Python tracker <https://bugs.python.org/issue36920> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue32177] spammers mine emails from bugs.python.org

2019-05-14 Thread SilentGhost
SilentGhost added the comment: Meta tracker hasn't been available for a while but the issues can be reported at https://github.com/python/bugs.python.org/issues -- nosy: +SilentGhost resolution: -> third party stage: -> resolved status: open -> closed type:

[issue3620] test_smtplib is flaky

2019-05-14 Thread SilentGhost
Change by SilentGhost : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue3620> ___ ___

[issue36910] Certain Malformed email causes email.parser to throw AttributeError

2019-05-14 Thread SilentGhost
Change by SilentGhost : -- stage: -> needs patch versions: +Python 3.8 -Python 3.5, Python 3.6 ___ Python tracker <https://bugs.python.org/issue36910> ___ _

[issue36914] zipimport does not load ZIP files produced by GitHub

2019-05-14 Thread SilentGhost
SilentGhost added the comment: This is going to be fixed in 3.8 (see #5950). -- nosy: +SilentGhost resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Make zipimport work with zipfile containing comments __

[issue10991] trace fails when test imported a temporary file

2019-05-13 Thread SilentGhost
SilentGhost added the comment: Brett, is this something that is still relevant for the supported versions or are you OK with closing this issue as out of date or wont fix? -- nosy: +SilentGhost, brett.cannon ___ Python tracker <ht

[issue36902] spam

2019-05-13 Thread SilentGhost
Change by SilentGhost : -- Removed message: https://bugs.python.org/msg342314 ___ Python tracker <https://bugs.python.org/issue36902> ___ ___ Python-bugs-list m

[issue36902] spam

2019-05-13 Thread SilentGhost
Change by SilentGhost : -- nosy: -rudragavara title: Wireless Network Engineer -> spam ___ Python tracker <https://bugs.python.org/issue36902> ___ ___ Python-

[issue36902] spam

2019-05-13 Thread SilentGhost
Change by SilentGhost : -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue36902> ___ ___

[issue36899] datetime utcfromtimestamp ignores astimezone

2019-05-13 Thread SilentGhost
SilentGhost added the comment: Naïve object does not assume anything, naïve object *lacks* timezone information. It cannot convert anything. It is a mistake to set a wrong timezone to a naïve object, a mistake that you're making. Piotr, this is a bug tracker for development of CPython, let's

[issue36899] datetime utcfromtimestamp ignores astimezone

2019-05-13 Thread SilentGhost
SilentGhost added the comment: In the same page about utcfromtimestamp https://docs.python.org/3.7/library/datetime.html#datetime.datetime.utcfromtimestamp it says: > with tzinfo None Also below, "To get an aware datetime object". All this means or implies naïve object. I've

[issue36899] datetime utcfromtimestamp ignores astimezone

2019-05-13 Thread SilentGhost
Change by SilentGhost : -- components: +Library (Lib) ___ Python tracker <https://bugs.python.org/issue36899> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36899] datetime utcfromtimestamp ignores astimezone

2019-05-13 Thread SilentGhost
SilentGhost added the comment: The utcfromtimestamp returns a naïve object that is assumed to be in the UTC timezone, you're then effectively turning it into a aware object in CEST timezone. I'm not sure what you think is wrong with utcfromtimestamp here, but it behaves according

[issue36898] Add parameter @case_sensitive to glob and rglob in pathlib

2019-05-13 Thread SilentGhost
Change by SilentGhost : -- pull_requests: +13179 stage: -> patch review versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issu

[issue36865] FileInput does not allow 'rt' mode, but all its existing delegates do

2019-05-12 Thread SilentGhost
Change by SilentGhost : -- nosy: +berker.peksag versions: -Python 3.5, Python 3.6, Python 3.7 ___ Python tracker <https://bugs.python.org/issue36865> ___ ___

[issue30464] gammavariate has a wrong comment

2019-05-12 Thread SilentGhost
SilentGhost added the comment: Does "a difference stream" in PR 1934 (news entry): > It does however produce a difference stream of random variables than it used > to. make some sense? Sentence doesn't seem grammatical. -- nosy: +SilentGhost resol

[issue36891] Additional startup plugin for vendors

2019-05-11 Thread SilentGhost
SilentGhost added the comment: This is a larger issue then the PR might lead one to believe. Have you had discussion on python-ideas or in other forums about this? -- nosy: +SilentGhost, ncoghlan versions: +Python 3.8 -Python 3.7 ___ Python

[issue36886] problem with Types on Python-3.8.0a4

2019-05-11 Thread SilentGhost
SilentGhost added the comment: This is a consequence of PEP 570 that implements positional-only arguments (see issue 36540). Those projects would have to update their code. Good that there are already open bugs for both projects. -- components: +Interpreter Core -Windows nosy

[issue36759] datetime: astimezone() results in OSError: [Errno 22] Invalid argument

2019-05-11 Thread SilentGhost
Change by SilentGhost : -- status: open -> pending ___ Python tracker <https://bugs.python.org/issue36759> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue36883] 在ctypes里调用C库返回c_char_p类型时的问题

2019-05-11 Thread SilentGhost
Change by SilentGhost : -- resolution: -> duplicate superseder: -> 在ctypes里调用C库返回c_char_p类型时的问题 type: -> behavior ___ Python tracker <https://bugs.python.or

[issue35947] Update libffi_msvc to current version of libffi

2019-05-11 Thread SilentGhost
SilentGhost added the comment: > I also wanted libffi_msvc/ to be removed. An empty directory is not really tracked by git, you should be able to just remove it manually without any problems, alternatively you could try git clean -fd # on a clean tree add -n for dry run. -- n

[issue36879] bug with round() and "numpy floats"

2019-05-11 Thread SilentGhost
Change by SilentGhost : -- resolution: not a bug -> stage: -> needs patch ___ Python tracker <https://bugs.python.org/issue36879> ___ ___ Python-bugs-

[issue36881] isinstance raises TypeError for metaclass with metaclass=ABCMeta

2019-05-11 Thread SilentGhost
Change by SilentGhost : -- nosy: +rhettinger, stutzbach type: -> behavior ___ Python tracker <https://bugs.python.org/issue36881> ___ ___ Python-bugs-list mai

[issue29254] Documentation Error

2019-05-10 Thread SilentGhost
Change by SilentGhost : -- Removed message: https://bugs.python.org/msg342070 ___ Python tracker <https://bugs.python.org/issue29254> ___ ___ Python-bugs-list m

[issue36872] passing negative values through modules

2019-05-09 Thread SilentGhost
SilentGhost added the comment: This bug tracker is for development of CPython, please ask your question on python-help mailing list, IRC or other similar forums. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -> closed type: compile error -&

[issue36872] passing negative values through modules

2019-05-09 Thread SilentGhost
Change by SilentGhost : -- components: -IDLE ___ Python tracker <https://bugs.python.org/issue36872> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36853] inconsistencies in docs builds (Sphinx 2)

2019-05-09 Thread SilentGhost
SilentGhost added the comment: > Second, we should probably determine why the doc builds are failing on Sphinx > 2 and update the `suspicious` code to support Sphinx 2. They're failing because in sphinx 2 old and deprecated (since 1.6) custom logging API was removed. So all Builde

[issue36863] argparse doesn't like options in the middle of arguments

2019-05-09 Thread SilentGhost
Change by SilentGhost : -- components: +Library (Lib) -Argument Clinic stage: -> test needed type: -> behavior versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/i

[issue36856] faulthandler._stack_overflow doesn't work on x86-linux with KPTI enabled

2019-05-08 Thread SilentGhost
Change by SilentGhost : -- nosy: +vstinner ___ Python tracker <https://bugs.python.org/issue36856> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36852] Python3.7.2 fails to cross-compile (yocto / openembedded) when target is mips softfloat

2019-05-08 Thread SilentGhost
Change by SilentGhost : -- nosy: +doko ___ Python tracker <https://bugs.python.org/issue36852> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36852] Python3.7.2 fails to cross-compile (yocto / openembedded) when target is mips softfloat

2019-05-08 Thread SilentGhost
SilentGhost added the comment: Matthias, would you be able to convert the patch into a Github PR? There are guidelines available at https://devguide.python.org/pullrequest/ -- nosy: +SilentGhost stage: -> patch review versions: +Python

[issue36845] ipaddres.IPv4Network and ipaddress.IPv6Network tuple construction will accept out of valid range prefixlen

2019-05-08 Thread SilentGhost
SilentGhost added the comment: There are some guidelines available at https://devguide.python.org/pullrequest/ -- ___ Python tracker <https://bugs.python.org/issue36

[issue18387] Add 'symbols' link to pydoc's html menu bar.

2019-05-08 Thread SilentGhost
Change by SilentGhost : -- versions: -Python 3.9 ___ Python tracker <https://bugs.python.org/issue18387> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36845] ipaddres.IPv4Network and ipaddress.IPv6Network tuple construction will accept out of valid range prefixlen

2019-05-08 Thread SilentGhost
Change by SilentGhost : -- nosy: +serhiy.storchaka ___ Python tracker <https://bugs.python.org/issue36845> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36845] ipaddres.IPv4Network and ipaddress.IPv6Network tuple construction will accept out of valid range prefixlen

2019-05-08 Thread SilentGhost
SilentGhost added the comment: Would you like to submit a fix, Nicolai? -- nosy: +SilentGhost, pmoody stage: -> needs patch versions: -Python 3.5, Python 3.6, Python 3.9 ___ Python tracker <https://bugs.python.org/issu

[issue36841] Supporting customization of float encoding in JSON

2019-05-07 Thread SilentGhost
Change by SilentGhost : -- nosy: +ezio.melotti, rhettinger type: -> enhancement versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issu

[issue36827] Overriding __new__ method with itself changes behaviour of the class

2019-05-07 Thread SilentGhost
Change by SilentGhost : -- nosy: +rhettinger ___ Python tracker <https://bugs.python.org/issue36827> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36827] Overriding __new__ method with itself changes behaviour of the class

2019-05-07 Thread SilentGhost
SilentGhost added the comment: It seems you're misunderstanding the point of __new__ and your usage of it is a bit strange. You're getting an error because you're ultimately calling object.__new__ which doesn't accept any other arguments but the class for instantiation. I'd suggest

[issue36824] Refactor str tests to reflect that str and unicode are merged in Python 3

2019-05-07 Thread SilentGhost
Change by SilentGhost : -- components: +Tests -Library (Lib) ___ Python tracker <https://bugs.python.org/issue36824> ___ ___ Python-bugs-list mailing list Unsub

[issue36823] shutil.copytree copies directories and files but fails with that same directory with '[Errno 1] Operation not permitted')

2019-05-07 Thread SilentGhost
Change by SilentGhost : -- nosy: +giampaolo.rodola, tarek ___ Python tracker <https://bugs.python.org/issue36823> ___ ___ Python-bugs-list mailing list Unsub

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : -- nosy: +SilentGhost ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : -- Removed message: https://bugs.python.org/msg341492 ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list m

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file26000/pec48.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25997/pec46.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25998/pec47.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25996/pec45.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25994/pec43.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25995/pec44.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25992/pec41.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25989/pec38.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25991/pec40.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25993/pec42.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25987/pec36.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25990/pec39.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25988/pec37.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25984/pec33.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-07 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25986/pec35.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25985/pec34.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25981/pec30.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25982/pec31.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25983/pec32.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25976/pec25.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25977/pec26.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25980/pec29.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25978/pec27.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25979/pec28.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25974/pec23.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25975/pec24.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : -- nosy: -SilentGhost ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25968/pec17.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

[issue1054] scriptsinstall target fails in alternate build dir

2019-05-06 Thread SilentGhost
Change by SilentGhost : Removed file: https://bugs.python.org/file25973/pec22.html ___ Python tracker <https://bugs.python.org/issue1054> ___ ___ Python-bugs-list mailin

<    1   2   3   4   5   6   7   8   9   10   >