[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2021-09-08 Thread Łukasz Langa
Łukasz Langa added the comment: Change made in Python 3.11: duplicate test removed. Closing. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.11 -Python 2.7, Python 3.7, Python 3.8 ___ Python

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2021-09-08 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset a5610057615779ca6fc75d9e006d2fae644a94d3 by andrei kulakov in branch 'main': bpo-19113: Remove unused test_errors from ctypes tests (GH-28008) https://github.com/python/cpython/commit/a5610057615779ca6fc75d9e006d2fae644a94d3 -- nosy:

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2021-08-27 Thread Andrei Kulakov
Change by Andrei Kulakov : -- keywords: +patch nosy: +andrei.avk nosy_count: 8.0 -> 9.0 pull_requests: +26450 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/28008 ___ Python tracker

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2020-05-02 Thread Filipe Laíns
Change by Filipe Laíns : -- nosy: +FFY00 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2020-04-17 Thread Furkan Onder
Furkan Onder added the comment: There are two tests with same name in the same test class (ctypes.test.test_functions test_errors) After merging both and re-run I encounter with this error which looks like it was always there but overwritten by other test (with same name)

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2019-07-21 Thread hai shi
hai shi added the comment: en, in python 3.8.0a3, I got those other error info: $ /home/shihai/workspace/cpython/python test_functions.py ERROR:root:code for hash md5 was not found. Traceback (most recent call last): File "/home/shihai/workspace/cpython/Lib/hashlib.py", line 244, in

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2019-04-25 Thread Xavier de Gaye
Change by Xavier de Gaye : -- versions: +Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2019-04-24 Thread Xavier de Gaye
Change by Xavier de Gaye : -- versions: +Python 2.7, Python 3.8 -Python 3.4, Python 3.5 ___ Python tracker ___ ___ Python-bugs-list

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2019-04-13 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2019-04-12 Thread Xavier de Gaye
Xavier de Gaye added the comment: Still fails on Python 3.8.0a3+. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2014-10-01 Thread Xavier de Gaye
Xavier de Gaye added the comment: This issue has been entered while checking for duplicate test names in issue 16079. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19113 ___

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2014-09-30 Thread Mark Lawrence
Mark Lawrence added the comment: @Xavier can you provide a patch for this issue? -- nosy: +BreamoreBoy versions: +Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19113 ___

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2013-10-04 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19113 ___

[issue19113] duplicate test names in Lib/ctypes/test/test_functions.py

2013-09-28 Thread Xavier de Gaye
New submission from Xavier de Gaye: After renaming the first test_errors method to test_errors_1 and the second one to test_errors_2: $ /bin/sh -c cd Lib/ctypes/test; ../../../python runtests.py test_functions.py F