-
Rounding when using formatting should be done towards the even choice when doing string formatting.
CPython:
```
>>> str(10000000000.25)
'10000000000.2'
>>> str(10000000000.75)
'10000000000.8'…
-
Game list is nice. But it would be more helpful to be able to import it into playnite and get genre or even screen for games. It support ironPython scripts so it should not be hard to write.
senpl updated
4 years ago
-
The following code works in regular python, but fails in IronPython 2.6RC2:
C:\test>python test.py
works
C:\test>ipy test.py
File "C:\test\mod.py", line ?
```
^
```
SyntaxError: unknown …
-
I want to use VisualStudio UITest to do my auto UI test, but I don't find
window and button.
( attachment is Microsoft.VisualStudio.TestTools.UITesting.dll )
code:
import clr
clr.AddReference(…
-
Hello, so first thank you you're awesome :-)
Next This scripting language is the only one that I manage to make work on WP8 platform (ironpython : do not support, ironruby : do not work, standard LUA …
-
**Is your feature request related to a problem? Please describe.**
This feature is related to an issue which currently only exists in the "CODESYS branch" of STweep.
**Describe the solution you'd …
-
```
What steps will reproduce the problem?
1. Download newest second life client
2. Run devobot, login to second life separately
3. avatars show up as clouds
What is the expected output? What do you …
-
Hi folks,
as we have no .NET5 version, maybe we can get a .NET6 one?
There are a few options:
- how does IronPython the job?
- how does roselyn work?
- trying out [MetadataBuilder](https://lear…
-
For example:
```Python
assert list(map(str.upper, System.Array[str](("a", "b")))) == ['A', 'B']
```
fails with:
> TypeError: upper() takes no arguments (2 given)
The method signature is:
```C…
-
https://github.com/airspeed-velocity/asv/commit/f954511596d7f3020256e9a3ae65b2fc1f88721a added support for PyPy. Currently `pythons` configuration basically finds Python binary like below and passes i…