New issue 2584: Segfault on os.write with --gc=minimark
https://bitbucket.org/pypy/pypy/issues/2584/segfault-on-oswrite-with-gc-minimark
KoshkinAlex31:
The problem discussed
[there](https://stackoverflow.com/questions/44649591/rpython-segfaults-on-os-write)
New issue 2585: cpyext: running lldebug0 shows many leftover
BaseCpyTypedescr.allocate
https://bitbucket.org/pypy/pypy/issues/2585/cpyext-running-lldebug0-shows-many
mattip:
running this script ``test.py``:
```python
import pandas as pd
values = range(55109);
data = pd.DataFrame.from_dict({'a':
New issue 2586: decimal.py: compare_total_mag() results reversed
https://bitbucket.org/pypy/pypy/issues/2586/decimalpy-compare_total_mag-results
Stefan Krah:
There seems to be a glitch in compare_total_mag():
Expected:
>>> Decimal(1).compare_total_mag(-2)
Decimal('-1')
Got:
Decimal(1).c
New issue 2587: decimal.py: compare_total(): unexpected result with NaN operand
https://bitbucket.org/pypy/pypy/issues/2587/decimalpy-compare_total-unexpected-result
Stefan Krah:
NaN operands are handled differently from _pydecimal:
Expected:
```
>>> Decimal('4367').compare_total(Decimal('NaN')
New issue 2588: ctypes package error: "TypeError: expected a readable buffer
object"
https://bitbucket.org/pypy/pypy/issues/2588/ctypes-package-error-typeerror-expected-a
MilesCranmer:
I am trying out PyPy on the following python 2.7 package (written with ctypes
calls): https://github.com/ledat