[issue27510] Found some Solution build missconfigurations.

2016-07-14 Thread Decorater
Decorater added the comment: was targeting* -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue27510> ___ ___ Python-bugs-list

[issue27510] Found some Solution build missconfigurations.

2016-07-14 Thread Decorater
Decorater added the comment: Some parts rargenting win32 was having the solution set of 64 bit making x86 with x64 setting mixups. Basically it was doing both 32 and 64 bit assembling at the same time which of course would make it fail

[issue27517] LZMACompressor and LZMADecompressor raise exceptions if given empty strings twice

2016-07-14 Thread Decorater
Decorater added the comment: Why you passing decompress without passing compress before decompressing it again? Also I would expect that it would show the same compress result trice in a row on the 1st test. This must definately be a issue. -- nosy: +Decorater

[issue27512] os.fspath is certain to crash when exception raised in __fspath__

2016-07-14 Thread Decorater
Decorater added the comment: nevermind the above traceback from it is a issue with the code that makes it try to copy the redist file from the v14 C++ runtime. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue26462] Patch to enhance literal block language declaration

2016-07-28 Thread Decorater
Decorater added the comment: Also I was thinking maybe I could figure out how to Add in asyncio to 2.7 anyway (well latest one that is) because why not. With as many things using asyncio now days it would be cake for those python 2 users

[issue26462] Patch to enhance literal block language declaration

2016-07-28 Thread Decorater
Decorater added the comment: tbh it would be nice if the entire documentation was recolored to look more 'interesting' to read. And to also have it in a way that people who lean visually can learn the info easier instead of them trying to read a giant wall of text that they may or may

[issue27642] import and __import__() fails silently without a ImportError and does not add the module to the file's namespace.

2016-07-28 Thread Decorater
Decorater added the comment: yeah I just noticed it is in sys.modules but does not get defined globally. Bug maybe there is a hack to make it global? -- resolution: not a bug -> status: closed -> open ___ Python tracker <rep...@bugs.p

[issue27642] import and __import__() fails silently without a ImportError and does not add the module to the file's namespace.

2016-07-28 Thread Decorater
Decorater added the comment: But* -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue27642> ___ ___ Python-bugs-list mailing list

[issue27642] import and __import__() fails silently without a ImportError and does not add the module to the file's namespace.

2016-07-28 Thread Decorater
New submission from Decorater: So, I have some code. I tried to make a 'plugin' for my bot I made in python. However it seems to not be able to import it which it should be able to. The code I used is here: https://bpaste.net/show/e4445c47490d I dont even know why it is not addign

[issue27749] python 3.5.2 maybe crash

2016-08-14 Thread Decorater
Decorater added the comment: I use code that does multithreading to from a library that uses ffmpeg for exact it makes daemon threads so it could be from that. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue26823] Shrink recursive tracebacks

2016-08-14 Thread Decorater
Decorater added the comment: 3.6 would make thread exceptions not print out to console or at least be configured to make them logged with the logging module in threading.py for 3.6? because I would like it to use the logger. Oh and how can I get the logs from the logging module from 2

[issue26823] Shrink recursive tracebacks

2016-08-14 Thread Decorater
Decorater added the comment: Be nice if 3.5 had this as well. As it can be very annoying at times. (Not to mention thread exceptions just cant be handled by anyone's code unless you modify threading.py -- nosy: +Decorater ___ Python tracker <

[issue27749] python 3.5.2 maybe crash

2016-08-13 Thread Decorater
Decorater added the comment: Crashes also happen from Recursion if not careful. Idk why but it happens. Although some of it is probably by not using try / catch probably anywhere in the python source code as a safeguard. I always like try / catch even in C++ as you never know when crap might

[issue27753] py_compile.compile() does not specify if it can accept a file like object or a bytes like object with the file's data.

2016-08-13 Thread Decorater
New submission from Decorater: py_compile.compile() does not specify if it can accept a file like object or a bytes like object with the file's data. Although I need something that can allow me to import byte like objects if the object contains valid python script data. (basically it would

[issue27753] py_compile.compile() does not specify if it can accept a file like object or a bytes like object with the file's data.

2016-08-13 Thread Decorater
Decorater added the comment: yeah, true and to specify that it cannot be anything but a file. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue27753] py_compile.compile() does not specify if it can accept a file like object or a bytes like object with the file's data.

2016-08-13 Thread Decorater
Decorater added the comment: Ok, file uploaded. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue27753> ___ ___ Python-bugs-list

[issue27753] py_compile.compile() does not specify if it can accept a file like object or a bytes like object with the file's data.

2016-08-13 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: Added file: http://bugs.python.org/file44095/py_compile.rst ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue21417] Compression level for zipfile

2016-08-13 Thread Decorater
Decorater added the comment: Yes, it would make sence or better yet have a arg that is optional that if not set make it = ``9``. -- nosy: +Decorater ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue27756] Add pyd icon for 3.6

2016-08-13 Thread Decorater
New submission from Decorater: I did some working and did a halfed one for pyd's it basically combines it icon from python.exe with the DLL "gears" for windows DLL's beig under that. Hopefully it will work. (Anyone could use this as a base file and restyle it or whatever if

[issue27749] python 3.5.2 maybe crash

2016-08-13 Thread Decorater
Decorater added the comment: I do know for sure the crash happens in python.exe and blames ntdll.dll for it. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue27749] python 3.5.2 maybe crash

2016-08-13 Thread Decorater
Decorater added the comment: I can confirm that I also get the same crash. -- Added file: http://bugs.python.org/file44099/python.exe.8228.dmp ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue12345] Add math.tau

2016-08-13 Thread Decorater
Decorater added the comment: not to mention I like to use the following expression myself. pie = 22 / 7 # because why not? tau = 2 * pie -- nosy: +Decorater ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue27757] eval() does not allow import statements to run.

2016-08-13 Thread Decorater
Decorater added the comment: eval* my typo is OP -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue27757> ___ ___ Python-bugs-list

[issue27757] eval() does not allow import statements to run.

2016-08-13 Thread Decorater
New submission from Decorater: runnign exec on import lines are fine however if I run the following code in a exec: >>>import py2pycx;py2pycx.api.compress_script(sys.path[0] + >>>'\resources\Dependencies', 'six.py') Traceback (most recent call last): File ".

[issue27509] Some tests breaks PGO build on Windows

2016-07-14 Thread Decorater
Decorater added the comment: What Edition of Visual Studio are you using? I am using Update 3 of 2015 Community and PGO is only (as far as I am aware of) in the Ultimate Edition of Visual Studio. -- nosy: +Decorater ___ Python tracker <

[issue27509] Some tests breaks PGO build on Windows

2016-07-14 Thread Decorater
Decorater added the comment: Have you tried the 3.6 branch maybe it was fixed there. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue27510] Found some Solution build missconfigurations.

2016-07-14 Thread Decorater
New submission from Decorater: I went in and looked in the batch build list to find some missconfigurations So, I went in and selected the right ones that I can see currently. -- components: Build, Windows files: pcbuild.sln messages: 270380 nosy: Decorater, paul.moore, steve.dower

[issue27507] bytearray.extend lacks overflow check when increasing buffer

2016-07-14 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: -- nosy: +Decorater ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue27507> ___ __

[issue27512] os.fspath is certain to crash when exception raised in __fspath__

2016-07-14 Thread Decorater
Decorater added the comment: This does also happen in make_zip too as it does not known about the current changes. https://bpaste.net/show/ff826604a5f0 -- nosy: +Decorater ___ Python tracker <rep...@bugs.python.org> <http://bugs.p

[issue27545] missing pyshellext.vcxproj prevents puilding 3.6

2016-07-17 Thread Decorater
Decorater added the comment: I am using Win32 and x64 configurations and this is the error: E:\Users\Elsword\Desktop\DecoraterBot\Async\DecoraterBot-indev\python36-indev\c python\PCbuild\pcbuild.proj(78,5): error MSB3202: The project file "pyshellext. vcxproj" was

[issue27545] missing pyshellext.vcxproj prevents puilding 3.6

2016-07-17 Thread Decorater
Decorater added the comment: Also I am using the windows target OS on it as well. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue27545] missing pyshellext.vcxproj prevents puilding 3.6

2016-07-17 Thread Decorater
New submission from Decorater: I have a issue with building 3.6 now since I got the last hg update it seems the github repo is broken too. This does need a fix. -- components: Build messages: 270677 nosy: Decorater priority: normal severity: normal status: open title: missing

[issue27469] Unicode filename gets crippled on Windows when drag and drop

2016-07-17 Thread Decorater
Decorater added the comment: Oh and when the shell extension is done could you make a custom icon for pyd's and have the desciption of "Python C Compiled DLL" to easy selcting them when you have no icons for any *.lib, *.exp and *.pdb's Would ease up comping pyd files as well.

[issue27538] Segfault on error in code object checking

2016-07-17 Thread Decorater
Decorater added the comment: Why are you even using v2.7 anyway when you can use asyncio with the coroutines in 3.4 or newer (which is pretty fast on things and is thread safe). -- nosy: +Decorater ___ Python tracker <rep...@bugs.python.org>

[issue27507] bytearray.extend lacks overflow check when increasing buffer

2016-07-16 Thread Decorater
Decorater added the comment: Only 1 way to find out, test it till it breaks. :P -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue27571] 3.6 Seems to be ignoring all pyd's installed and compiled by pip

2016-07-19 Thread Decorater
New submission from Decorater: in 3.5 the following would succed: >>>import nacl._sodium None but in 3.6 (I even compiled it for 3.6 specifically) this happens: >>>import nacl._sodium Traceback (most recent call last): import nacl._sodium ImportError: No module n

[issue27571] 3.6 Seems to be ignoring all pyd's installed and compiled by pip

2016-07-19 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: Added file: http://bugs.python.org/file43787/_sodium.cp36-win_amd64.pyd ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue27571] 3.6 Seems to be ignoring all pyd's installed and compiled by pip

2016-07-19 Thread Decorater
Decorater added the comment: Attacked are the 2 versions of _sodium for PyNacl that it seems to not be able to find. -- Added file: http://bugs.python.org/file43788/_sodium.cp36-win32.pyd ___ Python tracker <rep...@bugs.python.org>

[issue27571] 3.6 Seems to be ignoring the _sodium pyd file made with pip.

2016-07-19 Thread Decorater
Decorater added the comment: It dooes work foor _cffi_backend however on reading it so this issue is only on nacl._sodium then. -- title: 3.6 Seems to be ignoring all pyd's installed and compiled by pip -> 3.6 Seems to be ignoring the _sodium pyd file made with

[issue27571] 3.6 Seems to be ignoring the _sodium pyd file made with pip.

2016-07-19 Thread Decorater
Decorater added the comment: Commenting* -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue27571> ___ ___ Python-bugs-list

[issue27571] 3.6 Seems to be ignoring the _sodium pyd file made with pip.

2016-07-19 Thread Decorater
Decorater added the comment: hmm unless it has something to do with only my bot's debug command doing the following as it seems it could possible be only my bot's debug command however commenting out 1 thing in Discord.py also generates this Issue. Debug Command Code: https://bpaste.net/show

[issue27527] Make not yielding from or awaiting a coroutine a SyntaxError

2016-07-15 Thread Decorater
New submission from Decorater: Currently there is a waring printed in python when you try to call a coroutine without yieling from or awaiting it but I would like it to be a SyntaxError when this happens instead. -- components: Windows messages: 270538 nosy: Decorater, paul.moore

[issue27527] Make not yielding from or awaiting a coroutine a SyntaxError

2016-07-15 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: -- type: -> enhancement ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue27527> ___ __

[issue27527] Make not yielding from or awaiting a coroutine a SyntaxError

2016-07-15 Thread Decorater
Decorater added the comment: I am thinking like this example: import asyncio @asyncio.coroutine def SomeCoroutine(): print("test...") @asyncio.coroutine def SomeNormalFunction(): SomeCoroutine() Will print a warning instead I would like it to be a SyntaxError when the

[issue27527] Make not yielding from or awaiting a coroutine a SyntaxError

2016-07-16 Thread Decorater
Decorater added the comment: Oh it does not happen if you use the asyncio.coroutine decorater but it does do RuntimeWarning if you use the async def on it. -- versions: -Python 3.4 ___ Python tracker <rep...@bugs.python.org> <http://bugs.p

[issue27527] Make not yielding from or awaiting a coroutine a SyntaxError

2016-07-16 Thread Decorater
Decorater added the comment: So to make it Error it must be : import asyncio async def SomeCoroutine(): print("test...") SomeCoroutine() -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.py

[issue27519] update the references to http://mercurial.selenic.com

2016-07-15 Thread Decorater
Decorater added the comment: Why not add url to the GUI version too that actually adds hg to the path? -- nosy: +Decorater ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue27520] Issue when building PGO

2016-07-15 Thread Decorater
New submission from Decorater: I get this issue when trying a PGO build it seems that some projects do not create a pgd. (the link to simplify the size on here) https://bpaste.net/show/c704ee912c53 -- components: Build, Tests, Windows messages: 270487 nosy: Decorater, paul.moore

[issue27519] update the references to http://mercurial.selenic.com

2016-07-15 Thread Decorater
Decorater added the comment: TortoiseHg -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue27519> ___ ___ Python-bugs-list

[issue27523] Silence Socket Depreciation Warnings.

2016-07-15 Thread Decorater
New submission from Decorater: I have made a patch to some of the warnings to silence them hopefully this will help a lot. -- files: socketmodule.c.patch keywords: patch messages: 270512 nosy: Decorater priority: normal severity: normal status: open title: Silence Socket Depreciation

[issue27523] Silence Socket Depreciation Warnings.

2016-07-15 Thread Decorater
Decorater added the comment: Oh and ignore the exe on the patch if you see that 1 has changed. -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware type: -> enhancement ___ Python tracker <rep...@bugs.python.org&

[issue27523] Silence Socket Depreciation Warnings.

2016-07-15 Thread Decorater
Decorater added the comment: I just noticed it does not work the way I had hoped. Ignore this. -- status: open -> closed ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.or

[issue26624] Windows hangs in call to CRT setlocale()

2016-07-17 Thread Decorater
Decorater added the comment: Cant someone just copy these dlls from Windows 10 itself if they have it installed? ucrtbase: 10.0.14295.1000 (03/19/2016) ucrtbased: 10.0.10586.15(11/20/2015) vcruntime140d: 14.0.23506.0 (11/05/2015) I have windows 10 on another partition btw so

[issue27469] Unicode filename gets crippled on Windows when drag and drop

2016-07-17 Thread Decorater
Decorater added the comment: I actually like py2exe's memory loader. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue27469> ___ __

[issue26624] Windows hangs in call to CRT setlocale()

2016-07-17 Thread Decorater
Decorater added the comment: Also can you ask them why sometimes the IDE takes too long to respond AKA freezes / crashes randomly? -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue26624] Windows hangs in call to CRT setlocale()

2016-07-17 Thread Decorater
Decorater added the comment: not to mention build processes seems to be taking a lot of CPU recently but older C/C++ compilers do not EG the ones from like 2008 or so running faster than the same stuff being compiled againt 2010~2015 ones

[issue27515] Dotted name re-import does not rebind after deletion

2016-07-15 Thread Decorater
Decorater added the comment: I think on the 2nd example they did they got it wrong somewhat. I think this is what they wanted. >>> import email.charset; email.charset >>> del email #to actually delete the whole thing. >>> import email.charset; email.charset

[issue1230540] sys.excepthook doesn't work in threads

2016-08-04 Thread Decorater
Decorater added the comment: I too agree that I hate the thread exceptions being printed in the console I would suggest python was to error log it all to a file instead (so it does not spam up the console). I get it a lot with websocket / opus errors and it is annoying because it does

[issue1230540] sys.excepthook doesn't work in threads

2016-08-04 Thread Decorater
Decorater added the comment: personally these exceptions in console can be annoying to me as I hate seeing them. Exception in thread Thread-11: Traceback (most recent call last): File "threading.py", line 914, in _bootstrap_inner File "E:\Users\Elsword\Desktop\Decorate

[issue1230540] sys.excepthook doesn't work in threads

2016-08-04 Thread Decorater
Decorater added the comment: Ok, so I just found out you can bypass thread exceptions by wraping the line that actually runs the threads in a try/except block and then using the logging module to log it to a file instead of the console

[issue27767] Receive "A required privilege is not held by the Client" error message when Installing python on Windows 10 64 bit

2016-08-15 Thread Decorater
Decorater added the comment: Why are you trying to install 3.6? when you can make it the embeded version as it is still in alpha and then use it. Not only that but you can use \Tools\msi\make_zip.py to learn more. -- nosy: +Decorater ___ Python

[issue27766] Add ChaCha20 Poly1305 to SSL ciphers

2016-08-15 Thread Decorater
Decorater added the comment: tbh I personally perfer aiohttp over requests. -- nosy: +Decorater ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue27727] Update Tools/freeze to use .vcxproj files

2016-08-16 Thread Decorater
Decorater added the comment: I see 2 files that references dsp files and those are Tools/freeze/extensions_win32.ini and Tools/freeze/checkextensions_win32.py. -- nosy: +Decorater ___ Python tracker <rep...@bugs.python.org> <http://bugs.p

[issue27727] Update Tools/freeze to use .vcxproj files

2016-08-16 Thread Decorater
Decorater added the comment: Not to mention some parts in the ini references zlib in PCBuild which is no longer in that folder. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue21085] Cygwin does not provide siginfo_t.si_band

2017-01-27 Thread Decorater
Decorater added the comment: In 3.6 and 3.7 The Same Error is back on line 960 with gcc 6.3.0 on cygwin64. This issue is not entirely fixed even with the absolute latest commits. $ make gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-pro totypes-std=c99 -Wextra

[issue27777] cgi.FieldStorage can't parse simple body with Content-Length and no Content-Disposition

2016-08-16 Thread Decorater
Decorater added the comment: hmm into looking it should check if it is in actuality a binary file the length of the file data does not really determine anything on encoding really. if self._binary_file: would suffice on determining binary mode or not. -- nosy: +Decorater

[issue27777] cgi.FieldStorage can't parse simple body with Content-Length and no Content-Disposition

2016-08-16 Thread Decorater
Decorater added the comment: Here is a patch to review (note I only had disc space to clone 3.6 so I had to manually download this version of the file). -- Added file: http://bugs.python.org/file44125/cgi.py ___ Python tracker <

[issue27770] remove run_until_complete

2016-08-15 Thread Decorater
New submission from Decorater: I use a library that uses run_until_complete that is used for HTTP connections. However it does not work well when you want to reconnect anything that makes it start via recursion. So, I am suggesting the removal of run_until_complete and then tell everyone

[issue27776] PEP 524: Make os.urandom() blocking on Linux

2016-08-16 Thread Decorater
Decorater added the comment: Wow. ( linux only pep? inb4 a windows thing gets wedged in) -- nosy: +Decorater ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue27781] Change sys.getfilesystemencoding() on Windows to UTF-8

2016-08-16 Thread Decorater
Decorater added the comment: I personally hate ansi myself so +1 to UTF-8/UTF-16. -- nosy: +Decorater ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue28072] Empty Strings are not parsed to None.

2016-09-10 Thread Decorater
New submission from Decorater: I noticed that the Python interpreter does not interpret a empty string as None so I have to do this unclean workaround every time in functions that cannot have a empty string passed to them. Here is some example Code I have to do to bypass this (the function

[issue28072] Empty Strings are not parsed to None.

2016-09-10 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: -- versions: +Python 3.5, Python 3.6 ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue27885] Add a Crypto++ Wrapper for when Someone needs to use Crypto++ things outside of C++, e.g. in Python Code

2016-08-28 Thread Decorater
New submission from Decorater: So, I have Python Code that would be nice if the interpreter had a built in Crypto++ support. I am Suggesting for 3.6 to Add in this as it would be helpful for any Python Developer to do something like: import cryptopp And then doing the functiosn that Crpyto

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-11-28 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: -- components: -Windows ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28816> ___ _

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-11-28 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: -- nosy: -brett.cannon, eric.snow, ncoghlan, paul.moore, tim.golden, twouters, zach.ware ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-11-28 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: -- nosy: +twouters ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28816> ___ __

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-11-28 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: -- nosy: +brett.cannon, eric.snow, ncoghlan ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28827] f-strings: format spec should not accept unicode escapes

2016-11-28 Thread Decorater
Decorater added the comment: there is also the most common. '{10:02{0}}'.format(an_x) -- nosy: +Decorater ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue28828] Connection reset by peer error when installing python packages

2016-11-28 Thread Decorater
Decorater added the comment: Try using the new pypi instead: https://pypi.org/ locate the package then override pip to look for that package with the direct link to find the package with a command line arg of : -f ex: pip3 install -f [direct url to pypi page to package in question here

[issue28828] Connection reset by peer error when installing python packages

2016-11-28 Thread Decorater
Decorater added the comment: Also why python 2.7? Python 2.7 does not include asyncio which is absolutely awesome to use. It can allow doing multiple different things at the same time. So, it is and will be a good thing to upgrade. Note: a lot of things since 2.7 and 3.x was removed (some

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-11-28 Thread Decorater
New submission from Decorater: I am wondering so lets say for example if I was to make a json import hook (code below): from importlib.machinery import FileFinder import json import sys class ExtensionImporter(object): """Base Importer Class.""" def

[issue28781] On Installation of 3.5 Python get error message

2016-11-28 Thread Decorater
Decorater added the comment: You could also download the embeded build which ships with python35.dll to put it in the folder you installed python to alongside python.exe. -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.p

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-11-28 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: -- assignee: -> docs@python components: +Documentation -Interpreter Core nosy: +docs@python ___ Python tracker <rep...@bugs.python.org> <http://bugs.pyt

[issue28781] On Installation of 3.5 Python get error message

2016-11-28 Thread Decorater
Decorater added the comment: Normally when you install python systemwide it installs python35.dll in %SystemDrive%\Windows\System32\. Try looking there maybe you can use regsvr to register python35.dll in the registry or find where python.exe is and copy python35.dll

[issue28902] 3.6.0rc1 installer fails to install / uninstall.

2016-12-07 Thread Decorater
New submission from Decorater: When installing python 3.6.0rc1 it errors saying that it cannot find python.dll in cab1.cab (or some sort of file name similar to that) which it would obviously not exist. and then when I try to uninstall it it will fail saying 3.6 is not installed

[issue28902] 3.6.0rc1 installer fails to install / uninstall.

2016-12-07 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: -- type: -> behavior ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28902> ___ __

[issue28902] 3.6.0rc1 installer fails to install / uninstall.

2016-12-10 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: Added file: http://bugs.python.org/file45842/Python 3.6.0rc1 (64-bit)_20161210164706.log ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28902] 3.6.0rc1 installer fails to install / uninstall.

2016-12-10 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: Removed file: http://bugs.python.org/file45842/Python 3.6.0rc1 (64-bit)_20161210164706.log ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28902] 3.6.0rc1 installer fails to install / uninstall.

2016-12-10 Thread Decorater
Changes by Decorater <seandhun...@yahoo.com>: Added file: http://bugs.python.org/file45843/Python 3.6.0rc1 (64-bit)_20161210164706.log ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue28902] 3.6.0rc1 installer fails to install / uninstall.

2016-12-10 Thread Decorater
Decorater added the comment: I found the registry keys for all python version Except for the keys that Adds it to path to manually uninstall the Add to Path. Other than that Everything Else has been found and take cared of manually thanks to Windows built in Registry Editor

[issue28902] 3.6.0rc1 installer fails to install / uninstall.

2016-12-10 Thread Decorater
Decorater added the comment: Well, not only that but now when I try to uninstall the 64 bit version it seems to not be able to find when on the "Add to path" part of Uninstaller E:\ProgramData\Package Cache\{815FC13F-79DD-484C-8788-028D69569000}v3.6.121.0\ and some other folders. I

[issue28902] 3.6.0rc1 installer fails to install / uninstall.

2016-12-08 Thread Decorater
Decorater added the comment: Ah I know what the problem is now. It is the fact that the 32 Bit Webinstaller does not check to see if a 64 bit version is installed at the folder that the 32 bit version is set to to uninstall the 64 bit version 1st thereby it overwrites the data to the 36 bit

[issue29252] self in classes missinterpreted as a string.

2017-01-12 Thread Decorater
Decorater added the comment: Also in the code I had to subclass it 3 times, 1 time to preserver original functionality as if the hook was not inserted in the front of the path hooks, another time for 1 format of files it should be able to allow importing of, and the other time for another

[issue29252] self in classes missinterpreted as a string.

2017-01-12 Thread Decorater
Decorater added the comment: Also I sadly have to make this a dummy class just to add in an actual dictionary with the file extensions it supports because I cant use setattr on it. It is retarded that you cant use it for builtin types or classes if your code actually requires

[issue29252] self in classes missinterpreted as a string.

2017-01-12 Thread Decorater
New submission from Decorater: So, I have a class (it subclasses the zipimporter for my import hook) that allows me to not worry about issues when the hook is appended to the beginning of the path hooks. The code to the class as follows: class OriginalZipImport(zipimport.zipimporter

[issue28836] Throw concurrent.futures.TimeoutError instead of concurrent.futures.__base.TimeoutError

2016-11-29 Thread Decorater
Decorater added the comment: oh wait nvm -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue28836> ___ ___ Python-bugs-list

[issue28836] Throw concurrent.futures.TimeoutError instead of concurrent.futures.__base.TimeoutError

2016-11-29 Thread Decorater
Decorater added the comment: Wait actually BotErrors.CommandTimeoutError cubaclasses concurrent.futures.TimeoutError -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/i

[issue28836] Throw concurrent.futures.TimeoutError instead of concurrent.futures.__base.TimeoutError

2016-11-29 Thread Decorater
New submission from Decorater: So, concurrent.futures.TimeoutError subclasses concurrent.futures.__base.TimeoutError. Why not have asyncio throw that instead of the __base class for Timeout Error? There is a huge issue with this for starters for those know knows this they cannot handle

[issue28836] Throw concurrent.futures.TimeoutError instead of concurrent.futures.__base.TimeoutError

2016-11-29 Thread Decorater
Decorater added the comment: Here is my corouytine and the traceback on it to verify my issue too: Task exception was never retrieved future: exception=TimeoutError()> Traceback (most recent call last): File "asyncio\tasks.py", line 239, in _step File "E:\Use

[issue28836] Throw concurrent.futures.TimeoutError instead of concurrent.futures.__base.TimeoutError

2016-11-29 Thread Decorater
Decorater added the comment: I handle concurrent.futures.TimeoutError on my coroutine that is fired with create_task yet it sitll don't handle it though... so it still is a issue -- ___ Python tracker <rep...@bugs.python.org>

  1   2   3   >