[issue45603] [Windows] account privileges and updating Python packages

2021-10-24 Thread Dean
Change by Dean : -- title: [Windows] -> [Windows] account privileges and updating Python packages ___ Python tracker <https://bugs.python.org/issue45603> ___ _

[issue45603] [Windows]

2021-10-24 Thread Dean
New submission from Dean : Running on Windows 10 Home PC, I'm running into an issue with Windows user account privileges and updating Python packages. Upgrading a package (e.g. pip) with a lower-level user on Windows can result in a broken pip package (message of "no 'pip' packag

[issue41966] datetime.time issue with pickling in PyPy

2020-10-16 Thread Dean
Change by Dean : -- keywords: +patch pull_requests: +21695 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22731 ___ Python tracker <https://bugs.python.org/issu

[issue41966] datetime.time issue with pickling in PyPy

2020-10-08 Thread Dean
Dean added the comment: Code demonstrating the issue; the CTimeFoo class is pickled correctly, but TimeFoo isn't. import builtins from _datetime import time as ctime original_importer = builtins.__import__ def my_importer(name, globals, locals, fromlist, level): if name == '_datetime

[issue41966] datetime.time issue with pickling in PyPy

2020-10-07 Thread Dean
New submission from Dean : I've run into an issue pickling a datetime.time subclass in PyPy3. I believe it arises because PyPy uses the pure Python implementation of time and time.__reduce_ex__() returns (time, ...) on this line (https://github.com/python/cpython/blob

[issue37535] Client SSLSocket with select.select() always returns readable with OpenSSL 1.1.1

2019-07-09 Thread Dean
New submission from Dean : Hi, I've come across an issue with OpenSSL 1.1.1, when a client socket wrapped using ssl.wrap_socket() is used in select.select() its always returning ready for reading even though there appears to be nothing to read. To reproduce: 0. Extract files from attached

[issue33896] filecmp.cmp returns True on files that differ

2018-06-18 Thread Dean Morin
Dean Morin added the comment: Fair enough, how about just making it clearer in the documentation? Currently you need to look at the source code to see what would be required for a signature clash to occur. Maybe something like: Note that the [os.stat()](https://docs.python.org/3/library

[issue33896] filecmp.cmp returns True on files that differ

2018-06-18 Thread Dean Morin
New submission from Dean Morin : By default `filecmp.cmp()` has `shallow=True` which can produce some surprising behavior. In the docs it states: > If shallow is true, files with identical os.stat() signatures are taken to be > equal. However the "signature" only conside

[issue23078] unittest.mock patch autospec doesn't work on staticmethods

2018-01-25 Thread Dean Liao
Dean Liao <deanl...@gmail.com> added the comment: I planned to upgrade Chromium OS's mock module to 2.0.0. I also encountered the issue that classmethod cannot be patched as callable mock. Reviewers, can we start the review process? -- nosy: +de

[issue14672] Windows installer: add desktop shortcut(s)

2012-04-25 Thread Jeff Dean
New submission from Jeff Dean python.x@xoxy.net: Spun off from Issue3561: I recently saw Brian Curtin's Pycon 2012 presentation. If a goal is to make it easy for new Windows users to run python, consider (optionally) installing a desktop shortcut. This would make it easy for new users

[issue3561] Windows installer should add Python and Scripts directories to the PATH environment variable

2012-03-29 Thread Jeff Dean
Jeff Dean chima...@gmail.com added the comment: I just saw Brian Curtin's Pycon 2012 presentation. If a goal is to make it easy for new users to run python, consider installing a desktop shortcut. This would make it very easy for new users (easier than starting up a shell

[issue7443] test.support.unlink issue on Windows platform

2011-04-01 Thread Jeff Dean
Jeff Dean chima...@gmail.com added the comment: * Patch Py_DeleteFileW in posixmodule.c so that it renames before deleting: should solve the problem overall but obviously has a possible wider impact, in general and on performance in particular. This rename might be a simple rename-to-guid

[issue1344] subprocess.communication doc could use clarification

2007-10-27 Thread Dean Sturtevant
New submission from Dean Sturtevant: It would be helpful for the documentation for subprocess.communicate to point out that when Popening a process, stdin=PIPE needs to be set if the input parameter to communicate is to have any meaning. Similary, stdout=PIPE and stderr=PIPE need to be set

[issue1227] csv docs say 'excel_tab'; code says 'excel-tab'

2007-10-02 Thread Dean Elzinga
Dean Elzinga added the comment: Ohh! Thanks for the clarification. Sorry for the misunderstanding. -Original Message- From: Skip Montanaro [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 02, 2007 8:14 AM To: [EMAIL PROTECTED] Subject: [issue1227] csv docs say 'excel_tab'; code

[issue1227] csv docs say 'excel_tab'; code says 'excel-tab'

2007-10-01 Thread Dean Elzinga
New submission from Dean Elzinga: I was trying out 'csv module' and noticed that it wouldn't accept a dialect of 'excel_tab' as documented. Then I noticed that csv.list_dialects() gave 'excel-tab' instead of 'excel_tab' as documented. I'm not sure which one it's supposed to be, but I guess