[issue44760] Turtle Documentation - Contents Hyperlink conflict

2021-08-04 Thread Harry
Change by Harry : -- keywords: +patch pull_requests: +26093 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/27592 ___ Python tracker <https://bugs.python.org/issu

[issue44760] Turtle Documentation - Contents Hyperlink conflict

2021-08-04 Thread Harry
Harry added the comment: The conflict comes from the fact that the documentation is written from the perspective of the procedure-oriented interface "All methods of TurtleScreen/Screen also exist as functions, i.e. as part of the procedure-oriented interface" The confl

[issue44186] TimedRotatingFileHandler overwrite log

2021-08-01 Thread Harry
Harry added the comment: The issue appears when the TimedRotatingHandler rolls over to a filename that already exists. Running your bash script, the handler correctly rolls over so you end up with the expected behaviour. This issue arises in the case that there is already a file with the

[issue44543] Remove depreciated logging.warn() method

2021-07-01 Thread Harry
New submission from Harry : The logging.warn() method as an alias for logging.warning() is a mysterious function in the logging module, as far as I can tell it was depreciated the minute it was added, originally only added for backwards compatibility. Up until 3.3 it was undocumented, and

[issue44186] TimedRotatingFileHandler overwrite log

2021-06-05 Thread Harry
Change by Harry : -- keywords: +patch pull_requests: +25140 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26553 ___ Python tracker <https://bugs.python.org/issu

[issue44186] TimedRotatingFileHandler overwrite log

2021-06-04 Thread Harry
Harry added the comment: This bug seems to come from the fact that the file rollover occurs it removes any files with same name as the destination file. I believe this bug occurs on all "when" options, but the midnight option truncates the filename so only the date so it's m

[issue43648] Remove redundant datefmt option in logging file config

2021-03-28 Thread Harry
Change by Harry : -- keywords: +patch pull_requests: +23800 stage: -> patch review pull_request: https://github.com/python/cpython/pull/25051 ___ Python tracker <https://bugs.python.org/issu

[issue43648] Remove redundant datefmt option in logging file config

2021-03-28 Thread Harry
New submission from Harry : In the logging.conf section of the docs, there is a redundant datefmt option https://docs.python.org/3.10/howto/logging.html#configuring-logging -- assignee: docs@python components: Documentation messages: 389637 nosy: Harry-Lees, docs@python priority

[issue37620] str.split(sep=None, maxsplit=-1,any=False)

2019-07-19 Thread Harry Coin
Harry Coin added the comment: I suspect the number of times the str.split builtin was examined for use and rejected in favor of the much more complex and 'heavy' re module far, far exceeds the number of times it found use with more than one character in the split string. The

[issue37620] str.split(sep=None, maxsplit=-1,any=False)

2019-07-18 Thread Harry Coin
New submission from Harry Coin : When first I read the str.split documentation I parsed it to mean 'ab\t cd ef'.split(sep=' \t') --> ['ab','cd','ef'] Especially as the given example in the docs with the <> would have led to the given r

[issue36296] distutils.version.StrictVersion objects cannot be compared with distutils.version.LooseVersionobjects

2019-03-15 Thread Harry Seeber
Harry Seeber added the comment: I'm using these classes directly to parse semantic-ish versions in metadata for Munki packages (a package manager for MacOS). Looks like this packaging library is what I should use. Thanks you! On Thu, Mar 14, 2019 at 5:32 PM Éric Araujo wrote: > >

[issue36296] distutils.version.StrictVersion objects cannot be compared with distutils.version.LooseVersionobjects

2019-03-14 Thread Harry Seeber
New submission from Harry Seeber : The self.version used in Version._cmp is a List in LooseVersion's implementation, a Tuple in StrictVersion's implementation. Attempting to compare Strict & Loose versions results in a TypeError. I'd like to PR a fix, but I'd like to

[issue24658] open().write() fails on 2 GB+ data (OS X)

2016-11-06 Thread Harry Li
Changes by Harry Li : -- nosy: +Harry Li ___ Python tracker <http://bugs.python.org/issue24658> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24738] os.link() issues on Windows & ReFS

2015-07-27 Thread Harry Lam
Harry Lam added the comment: Slight bit of clarification: This doesn't affect all scripts -- just those which don't have proper Except OSError handling. In pip's case, a timeout is not passed to the acquire() function when it is first being called and causes this iss

[issue24738] os.link issues on Windows & ReFS

2015-07-27 Thread Harry Lam (WaXHeLL)
New submission from Harry Lam (WaXHeLL): Storage Spaces (RAID volumes) under Windows 8.1 / Server 2012 R2 use ReFS which does not support hard links. If the Users directory has been moved to a ReFS volume, it causes any script that uses os.link to hang (pip is one of the notable examples). As

[issue18190] RuntimeError raised with re.search + re.DOTALL on empty string

2013-06-11 Thread Harry Bock
New submission from Harry Bock: In Python 2.7.5, running re.search on regular expressions beginning with '.+' will raise RuntimeError if: * the string being matched is empty * the flags include re.DOTALL/re.S >>> re.search(".+a", "", flags=re.S) File

[issue17770] MSI installer default behaviour inconsistent

2013-04-16 Thread Harry Johnston
Harry Johnston added the comment: Never mind, I found where this is documented. Still seems odd to me, but it's not a bug. -- status: open -> closed ___ Python tracker <http://bugs.python.org

[issue17770] MSI installer default behaviour inconsistent

2013-04-16 Thread Harry Johnston
New submission from Harry Johnston: When installing python-2.7.4.msi via the GUI, the default setting for the installation type is "All Users". When installing it passively, e.g. msiexec /package python-2.7.4.msi /passive the default installation type is "Just For Me",