Changes by Tushar :
--
type: -> enhancement
___
Python tracker
<http://bugs.python.org/issue24236>
___
___
Python-bugs-list mailing list
Unsubscrib
New submission from Tushar:
This tool/module will perform the TestNG type results to Junit results.
This will be applicable for any TestNG result.xml file.
--
components: Extension Modules
messages: 243557
nosy: tusharm
priority: normal
severity: normal
status: open
title: TestNG
Tushar added the comment:
The intention was to facilitate the user who want to port TestNG reports format
to Junit standard format. I sent a mail to PSF mailing list and I got the
pointer that this can't be part of standard library but PyPI. So I will upload
this as a package instead
Changes by Tushar :
--
resolution: -> not a bug
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue24236>
___
___
Python-bugs-list
New submission from Tushar Sadhwani :
compile_command used to raise error for this until Python 3.9:
```
>>> import code
>>> code.compile_command("abc def '''")
Traceback (most recent call last):
File "", line 1, in
File "/
Tushar Sadhwani added the comment:
wontfix would really suck, because that would mean every REPL written with the
`code` module will be broken, even IPython:
```
$ ipython
Python 3.10.0 (default, Oct 11 2021, 05:33:59) [GCC 11.2.0]
Type 'copyright', 'credits' o
Tushar Sadhwani added the comment:
You're right. There was another bug in my code that was causing the SyntaxError
to not show up at all, sorry about that.
Can you help me figure out why this bug doesn't show up in the normal Python
REPL?
```
>>> abc def ''
New submission from Tushar Sadhwani :
Starting with Python3.9, `@classmethod` can be stacked on top of `@property`,
but it seems that `@staticmethod` cannot.
>>> class C:
... @classmethod
... @property
... def cm(cls):
... return cls.__name__
... @sta
New submission from Tushar Sadhwani :
turtledemo.colormixer crashes after (what i'm assuming) 1000 changes to the
state of a color bar.
# Error:
PS C:\Users\tusha> python -m turtledemo.colormixer
Fatal Python error: Cannot recover from stack overflow.
Python runtime state: ini
Tushar Sadhwani added the comment:
pyenv is a python version management tool. But this issue has nothing to do
with it.
I ran the same thing on python 3.8.5 (both 32 and 64bit) and the same error
occured
C:\Users\tusha\AppData\Local\Programs\Python\Python38-32>python.exe
Python 3.8.5 (t
Tushar Sadhwani added the comment:
Also, forgot to add
The app crashes pretty quickly for me, to reproduce the error all I have to do
is run the colormixer demo and move any of the bars up and down a couple of
times.
--
___
Python tracker
Tushar Sadhwani added the comment:
Ran the following tests on Python 3.8.5 32bit
colormixer crashed with the same error,
python -m turtle did not crash
Here's the output of the test suite:
PS C:\Users\tusha\AppData\Local\Programs\Python\Python38-32> .\python.exe -m
test -
12 matches
Mail list logo