[issue32642] add support for path-like objects in sys.path

2018-03-18 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: srry I opened another issue bpo-33099 -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue33099] test_poplib hangs with the changes done in PR

2018-03-18 Thread Jay Yin
New submission from Jay Yin <jayyin11...@gmail.com>: my test hangs locally on my computer with the changes I've done in bpo-32642 but doesn't hang on TravisCI, anyone able to help with checking what's wrong here (sounds like another edge case with my env but I could be wrong) the

[issue32642] add support for path-like objects in sys.path

2018-03-15 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: it seems to me like the issue in my tests is that some SSL thing is failing?, anyone have any experience with this? -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue32642] add support for path-like objects in sys.path

2018-03-15 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: https://pastebin.com/q4FKnPZH the trace for the test_poplib -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue32642] add support for path-like objects in sys.path

2018-03-15 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: I'm having issues with my local changes for my PR, I'm unsure why my local machine takes a seemingly infinite amount of time on test_poplib, so again I think something to do with my local environment is causing issues again, any help

[issue32642] add support for path-like objects in sys.path

2018-03-08 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: The issue was resolved by updating my version of the rest of the package apparently and remaking the whole thing, must have been some outdated stuff on my end causing the issue -- ___

[issue32642] add support for path-like objects in sys.path

2018-03-07 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: I've been stuck on "test_poplib" for over 149661 sec now, that's about 41 hours... I don't think this is working correctly, although I'm unsure what test_poplib is doing that has been affected by what I

[issue32642] add support for path-like objects in sys.path

2018-03-05 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: I'm unsure how to regenerate the files that interact with the code for sys.path as travisCI states " Generated files not up to date M Python/importlib_external.h " since my code changes some of how the impo

[issue32855] Add documention stating supported Platforms

2018-02-15 Thread Jay Yin
New submission from Jay Yin <jayyin11...@gmail.com>: we can probably add a section that includes all supported platforms and possibly "partially" supported platforms, and maybe include platforms that currently aren't supported but want/plan to be supported. -- assig

[issue32642] add support for path-like objects in sys.path

2018-02-14 Thread Jay Yin
Change by Jay Yin <jayyin11...@gmail.com>: -- keywords: +patch pull_requests: +5484 stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue32773] distutils should NOT preserve timestamps

2018-02-14 Thread Jay Yin
Change by Jay Yin <jayyin11...@gmail.com>: -- pull_requests: +5483 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32773> ___ _

[issue32835] Add documention mentioning that Cygwin isn't fully compatible

2018-02-12 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: ah I see, hence the *currently* incompatible, there must be some way of tracking areas in need of help without having to use the search, kind of like the way Github uses labels. -- type: enhan

[issue32835] Add documention mentioning that Cygwin isn't fully compatible

2018-02-12 Thread Jay Yin
New submission from Jay Yin <jayyin11...@gmail.com>: I didn't find any documentation stating that Cygwin isn't currently compatible with building, I was wondering if it would be good to add documentation stating this and that it would be an area requiring help. -- assignee

[issue32642] add support for path-like objects in sys.path

2018-02-12 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: https://github.com/python/cpython/blob/3c34aad4e7a95913ec7db8e5e948a8fc69047bf7/Lib/importlib/_bootstrap_external.py#L1069-L1090 those are the particular class and lines I'm ref

[issue32642] add support for path-like objects in sys.path

2018-02-12 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: ok, so I found the PathFinder class you referenced, just making sure, this issue pertains to changing "self.path"'s usage and declaration to be a path-like object instead of the hard coded 'sys', 'path' returns? or is that pa

[issue32642] add support for path-like objects in sys.path

2018-02-11 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: Thanks for the reply -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32642> ___

[issue32642] add support for path-like objects in sys.path

2018-02-08 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: what file(s) is/are the sys.path code located in? -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue32773] distutils should NOT preserve timestamps

2018-02-07 Thread Jay Yin
Change by Jay Yin <jayyin11...@gmail.com>: -- keywords: +patch pull_requests: +5401 stage: -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue32773] distutils should NOT preserve timestamps

2018-02-07 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: would it be ok for me to make a patch for this as practice?, I will be making a PR though, I will be making the -- option available for backward compatibility. -- ___ Python tracke

[issue32773] distutils should NOT preserve timestamps

2018-02-06 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: so what you're proposing, is that the function copy_file() itself, use defaults, but make it so that any functions that reference it not save the timing?, if so wouldn't that still require an internal

[issue32773] distutils should NOT preserve timestamps

2018-02-06 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: That's why I said to have the default be the old setting, so that any previous setups wouldn't need to changes (aka backward compat.) the option would give people the "option

[issue32773] distutils should NOT preserve timestamps

2018-02-06 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: I can tackle this if it's alright? -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue32642] add support for path-like objects in sys.path

2018-02-05 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: This looks a lot like https://bugs.python.org/issue32446, I'd like to tackle this, if we are going through with it. -- nosy: +jayyin11043 ___ Python tracker <rep...@bugs.python.or

[issue32773] distutils should NOT preserve timestamps

2018-02-05 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: Will an option be added to copy_file() function? if we did we could probably make it preserve the times by default and have an -- option to make it update? -- nosy: +jayyin11043 ___ Python t

[issue32714] remove resourceLoader related code since it's deprecated

2018-01-29 Thread Jay Yin
Change by Jay Yin <jayyin11...@gmail.com>: -- resolution: -> postponed stage: -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <https://bu

[issue32714] remove resourceLoader related code since it's deprecated

2018-01-29 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: Alright I see, so I guess I'll set this as "postponed" and close it? -- versions: +Python 3.7 ___ Python tracker <rep...@bugs.python.org> <https://b

[issue32714] remove resourceLoader related code since it's deprecated

2018-01-29 Thread Jay Yin
New submission from Jay Yin <jayyin11...@gmail.com>: I recently discovered in the documentation within the code and recent discussions with Barry, that ResourceLoader is deprecated and was wondering if we wanted to remove the code exclusively pertaining to ResourceLoader for c

[issue32714] remove resourceLoader related code since it's deprecated

2018-01-29 Thread Jay Yin
Change by Jay Yin <jayyin11...@gmail.com>: -- components: +Library (Lib) ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32714> ___

[issue32446] ResourceLoader.get_data() should accept a PathLike

2018-01-26 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: I hope this isn't a dumb question but where is ResourceLoader.get_data() implemented, using ATOM to search the whole project and I can't seem to find it. -- ___ Python tracke

[issue32446] ResourceLoader.get_data() should accept a PathLike

2018-01-26 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: nvm I temporarily forgot I was working with python here, I'd need to use "is" to check what the entered "path" is huh? -- ___ Python tracker <rep...@bugs.python.

[issue32446] ResourceLoader.get_data() should accept a PathLike

2018-01-26 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: this would extend to set and get data right?, also would it be good to use the current get_data() (one that reads only string) function for the overloaded one and extract the string path from the os.path object? or would we want the o

[issue32446] ResourceLoader.get_data() should accept a PathLike

2018-01-26 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: I'm taking a look now, this looks interesting -- nosy: +jayyin11043 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue27931] Email parse IndexError <""@wiarcom.com>

2018-01-26 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: https://github.com/python/cpython/pull/5329 this is the pending pull request for this -- nosy: +jayyin11043 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue2793] Dictionary fails to index when adding list when in a deeply nested loop

2018-01-25 Thread Jay Yin
Change by Jay Yin <jayyin11...@gmail.com>: -- pull_requests: +5177 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue2793> ___ _

[issue27931] Email parse IndexError <""@wiarcom.com>

2018-01-25 Thread Jay Yin
Change by Jay Yin <jayyin11...@gmail.com>: -- pull_requests: +5174 stage: commit review -> patch review ___ Python tracker <rep...@bugs.python.org> <https://bugs.pyt

[issue32667] test_subprocess and test_dtrace fails if the last entry of $PATH is a file

2018-01-25 Thread Jay Yin
Jay Yin <jayyin11...@gmail.com> added the comment: no problem, thanks for helping and fixing the issue, I can now help contribute to python =D -- ___ Python tracker <rep...@bugs.python.org> <https://bugs.python

[issue32667] test_subprocess and test_dtrace fails if the last entry of $PATH is a file

2018-01-25 Thread Jay Yin
Change by Jay Yin <jayyin11...@gmail.com>: -- versions: +Python 2.7 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32667> ___ _

[issue32667] test_subprocess and test_dtrace fails if the last entry of $PATH is a file

2018-01-25 Thread Jay Yin
Change by Jay Yin <jayyin11...@gmail.com>: -- versions: +Python 3.6 ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32667> ___ _

[issue32667] test_subprocess and test_dtrace fails if the last entry of $PATH is a file

2018-01-25 Thread Jay Yin
Change by Jay Yin <jayyin11...@gmail.com>: -- resolution: -> fixed ___ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue32667> ___ __

[issue32667] test_subprocess and test_dtrace fails if the last entry of $PATH is a file

2018-01-25 Thread Jay Yin
Change by Jay Yin <jayyin11...@gmail.com>: -- stage: patch review -> resolved status: open -> closed ___ Python tracker <rep...@bugs.python.org> <https://bugs.

[issue32667] Failing test_dtrace and test_subprocess on Ubuntu 16.04 on master

2018-01-25 Thread Jay Yin
New submission from Jay Yin <jayyin11...@gmail.com>: Hello everyone, I've been trying to build the master branch on Ubuntu 16.04 and it currently fails 2 test, I was wondering if this was normal or if I'm missing dependencies, I also tried apt-get build-dev python3.6 and pyt