[issue35782] Missing whitespace after comma in randrange raise error

2019-03-05 Thread Raymond Hettinger
Raymond Hettinger added the comment: I concur with Terry that no backport is warranted. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue35782] Missing whitespace after comma in randrange raise error

2019-03-05 Thread Cheryl Sabella
Cheryl Sabella added the comment: Assigning to Raymond regarding the question about the backport. -- assignee: cheryl.sabella -> rhettinger ___ Python tracker ___

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: We usually don't backport exception message changes, for the reason given, unless the content is wrong or misleading. Unless Raymond says otherwise, I think the backport should be closed as too trivial and this issue closed as fixed. -- nosy:

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +11413, 11414, 11415 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +11413 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-21 Thread miss-islington
Change by miss-islington : -- pull_requests: +11413, 11414 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-21 Thread miss-islington
miss-islington added the comment: New changeset 2433a2ab705e93f9a44f01c260d351b205a73e9d by Miss Islington (bot) (Kumar Akshay) in branch 'master': bpo-35782: Fix error message in randrange (GH-11620) https://github.com/python/cpython/commit/2433a2ab705e93f9a44f01c260d351b205a73e9d

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-19 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: > I previously close this issue is because not sure if someone rely on > exception string to do something, should we consider this? I think this is a valid issue since error messages have been modified in the past. I am not sure if this will be

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-19 Thread Louie Lu
Louie Lu added the comment: I previously close this issue is because not sure if someone rely on exception string to do something, should we consider this? -- ___ Python tracker

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-19 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch, patch, patch pull_requests: +11369, 11370, 11371 stage: needs patch -> patch review ___ Python tracker ___

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-19 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch, patch, patch, patch pull_requests: +11369, 11370, 11371, 11372 stage: needs patch -> patch review ___ Python tracker ___

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-19 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch, patch pull_requests: +11369, 11370 stage: needs patch -> patch review ___ Python tracker ___

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-19 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +11369 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-18 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- stage: resolved -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: Cheryl, do you want to neaten-up this error message? It is triggered by randrange(3, 3). -- assignee: -> cheryl.sabella nosy: +cheryl.sabella, rhettinger status: closed -> open ___ Python tracker

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-18 Thread Louie Lu
Change by Louie Lu : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue35782] Missing whitespace after comma in randrange raise error

2019-01-18 Thread Louie Lu
New submission from Louie Lu : In random.py:randrange File "/usr/lib/python3.7/random.py", line 200, in randrange raise ValueError("empty range for randrange() (%d,%d, %d)" % (istart, istop, width)) ValueError: empty range for randrange() (3,3, 0) should be "empty range for