Junling Zhu
Junling Zhu
RIDE v2.0b2 wxPython 4.1.1 Python 3.8.10 Windows 10 I got the error on python console when the name of test case contains Chinese: _Traceback (most recent call last): File "C:\Python38\lib\site-packages\robotide\contrib\testrunner\testrunnerplugin.py",...
> This is another test case with similar problems, even applying the #2494 will not show the expected output. > > ``` > *** Test Cases *** > TC1 >...
In the Dutch language Windows, OEM Code Page is 850, ANSI Code Page is 1252. The OEMCP apply to the console system calls, and the ANSICP apply to the file...
> @zhujunling-nj Your suggestion for encoding SYSTEM also works with me (in essence this is using locale.getpreferredencoding()) but the Chinese test case does not work properly. The Chinese characters all...
In python 3, I use another solution (without the [2494](https://github.com/robotframework/RIDE/pull/2494)), it seems to be working properly. Set the windows environment PYTHONIOENCODING to UTF-8, and no source code need to be...
I have tried two solutions: 1. Set the RIDE shortcut target to _C:\Python38\pythonw.exe -c "import os; from robotide import main; os.environ['PYTHONIOENCODING'] = 'UTF-8'; main()"_. This is only effective for the...
> I have tried two solutions: > > 1. Set the RIDE shortcut target to _C:\Python38\pythonw.exe -c "import os; from robotide import main; os.environ['PYTHONIOENCODING'] = 'UTF-8'; main()"_. This is only...
> @zhujunling-nj Maybe you have seen my own PR for testrunnerplugin.py? As this looks like a Windows problem only I tried to make the fix more specific. Maybe you could...
原来签名时椭圆曲线运算量:约256次双倍运算+128次加法算法,现在只需32次加法运算,椭圆曲线运算提升12倍,整体签名性能提升约7-8倍 > 借问一下, 能提升多少呢?
> 这个修改需要的栈内存还不小 静态变量存储在DSS段(未初始化时)或DATA段(已初始化时),不在栈里。