[pypy-commit] [Git][pypy/pypy][branch/default] 3 commits: fix an XXX in the method shortcut code: it actually is a problem for KeyError

2022-10-08 Thread Carl Friedrich Bolz-Tereick (@cfbolz)


Carl Friedrich Bolz-Tereick pushed to branch branch/default at PyPy / pypy


Commits:
906899e7 by Carl Friedrich Bolz-Tereick at 2022-10-08T18:46:04+02:00
fix an XXX in the method shortcut code: it actually is a problem for KeyError
on pypy3

- - - - -
594b5846 by Carl Friedrich Bolz-Tereick at 2022-10-08T18:47:19+02:00
#3821: support subclassing _RawIOBase and BytesIO at the same time

- - - - -
b019546e by Carl Friedrich Bolz-Tereick at 2022-10-08T18:49:34+02:00
add a docstring

- - - - -


4 changed files:

- pypy/interpreter/typedef.py
- pypy/module/_io/interp_iobase.py
- pypy/module/_io/test/apptest_bytesio.py
- pypy/objspace/std/objectobject.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/ba30949bf05335195dff853cac841a03ecb099c2...b019546e6925961dd23c815a8f19f6b153234a83

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/ba30949bf05335195dff853cac841a03ecb099c2...b019546e6925961dd23c815a8f19f6b153234a83
You're receiving this email because of your account on foss.heptapod.net.


___
pypy-commit mailing list -- pypy-commit@python.org
To unsubscribe send an email to pypy-commit-le...@python.org
https://mail.python.org/mailman3/lists/pypy-commit.python.org/
Member address: arch...@mail-archive.com


[pypy-commit] [Git][pypy/pypy][branch/py3.8] use itemsize=0 on PyUnicode_Type

2022-10-08 Thread Matti Picus (@mattip)


Matti Picus pushed to branch branch/py3.8 at PyPy / pypy


Commits:
ffc2795b by Matti Picus at 2022-10-08T21:01:17+03:00
use itemsize=0 on PyUnicode_Type

--HG--
branch : py3.8

- - - - -


4 changed files:

- pypy/module/cpyext/pyobject.py
- pypy/module/cpyext/test/test_unicodeobject.py
- pypy/module/cpyext/typeobject.py
- pypy/module/cpyext/unicodeobject.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/ffc2795b5d7033e691aee4d193b6fc9b3468b806

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/ffc2795b5d7033e691aee4d193b6fc9b3468b806
You're receiving this email because of your account on foss.heptapod.net.


___
pypy-commit mailing list -- pypy-commit@python.org
To unsubscribe send an email to pypy-commit-le...@python.org
https://mail.python.org/mailman3/lists/pypy-commit.python.org/
Member address: arch...@mail-archive.com


[pypy-commit] [Git][pypy/pypy][branch/default] undo part of d808fe36af64 that I didn't understand properly to fix this bug:

2022-10-08 Thread Carl Friedrich Bolz-Tereick (@cfbolz)


Carl Friedrich Bolz-Tereick pushed to branch branch/default at PyPy / pypy


Commits:
399791d1 by Carl Friedrich Bolz-Tereick at 2022-10-08T22:34:32+02:00
undo part of d808fe36af64 that I didn't understand properly to fix this bug:

 class K(KeyError): pass
 print(K(1))
Traceback (most recent call last):
  File "", line 1, in 
TypeError: 'KeyError' object expected, got 'K' instead

- - - - -


2 changed files:

- pypy/module/exceptions/interp_exceptions.py
- pypy/module/exceptions/test/test_exc.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/399791d1e47dbb4c3cfeab7ac24705b08ace515b

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/commit/399791d1e47dbb4c3cfeab7ac24705b08ace515b
You're receiving this email because of your account on foss.heptapod.net.


___
pypy-commit mailing list -- pypy-commit@python.org
To unsubscribe send an email to pypy-commit-le...@python.org
https://mail.python.org/mailman3/lists/pypy-commit.python.org/
Member address: arch...@mail-archive.com


[pypy-commit] [Git][pypy/pypy][branch/py3.8] 5 commits: fix an XXX in the method shortcut code: it actually is a problem for KeyError

2022-10-08 Thread Carl Friedrich Bolz-Tereick (@cfbolz)


Carl Friedrich Bolz-Tereick pushed to branch branch/py3.8 at PyPy / pypy


Commits:
906899e7 by Carl Friedrich Bolz-Tereick at 2022-10-08T18:46:04+02:00
fix an XXX in the method shortcut code: it actually is a problem for KeyError
on pypy3

- - - - -
594b5846 by Carl Friedrich Bolz-Tereick at 2022-10-08T18:47:19+02:00
#3821: support subclassing _RawIOBase and BytesIO at the same time

- - - - -
b019546e by Carl Friedrich Bolz-Tereick at 2022-10-08T18:49:34+02:00
add a docstring

- - - - -
399791d1 by Carl Friedrich Bolz-Tereick at 2022-10-08T22:34:32+02:00
undo part of d808fe36af64 that I didn't understand properly to fix this bug:

 class K(KeyError): pass
 print(K(1))
Traceback (most recent call last):
  File "", line 1, in 
TypeError: 'KeyError' object expected, got 'K' instead

- - - - -
ca99edd1 by Carl Friedrich Bolz-Tereick at 2022-10-08T22:48:56+02:00
merge default. should fix #3821

--HG--
branch : py3.8

- - - - -


6 changed files:

- pypy/interpreter/typedef.py
- pypy/module/_io/interp_iobase.py
- pypy/module/_io/test/apptest_bytesio.py
- pypy/module/exceptions/interp_exceptions.py
- pypy/module/exceptions/test/test_exc.py
- pypy/objspace/std/objectobject.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/ffc2795b5d7033e691aee4d193b6fc9b3468b806...ca99edd1ebbd396ccb188f54010a277fbffbe713

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/ffc2795b5d7033e691aee4d193b6fc9b3468b806...ca99edd1ebbd396ccb188f54010a277fbffbe713
You're receiving this email because of your account on foss.heptapod.net.


___
pypy-commit mailing list -- pypy-commit@python.org
To unsubscribe send an email to pypy-commit-le...@python.org
https://mail.python.org/mailman3/lists/pypy-commit.python.org/
Member address: arch...@mail-archive.com


[pypy-commit] [Git][pypy/pypy][branch/py3.9] 7 commits: fix an XXX in the method shortcut code: it actually is a problem for KeyError

2022-10-08 Thread Carl Friedrich Bolz-Tereick (@cfbolz)


Carl Friedrich Bolz-Tereick pushed to branch branch/py3.9 at PyPy / pypy


Commits:
906899e7 by Carl Friedrich Bolz-Tereick at 2022-10-08T18:46:04+02:00
fix an XXX in the method shortcut code: it actually is a problem for KeyError
on pypy3

- - - - -
594b5846 by Carl Friedrich Bolz-Tereick at 2022-10-08T18:47:19+02:00
#3821: support subclassing _RawIOBase and BytesIO at the same time

- - - - -
b019546e by Carl Friedrich Bolz-Tereick at 2022-10-08T18:49:34+02:00
add a docstring

- - - - -
ffc2795b by Matti Picus at 2022-10-08T21:01:17+03:00
use itemsize=0 on PyUnicode_Type

--HG--
branch : py3.8

- - - - -
399791d1 by Carl Friedrich Bolz-Tereick at 2022-10-08T22:34:32+02:00
undo part of d808fe36af64 that I didn't understand properly to fix this bug:

 class K(KeyError): pass
 print(K(1))
Traceback (most recent call last):
  File "", line 1, in 
TypeError: 'KeyError' object expected, got 'K' instead

- - - - -
ca99edd1 by Carl Friedrich Bolz-Tereick at 2022-10-08T22:48:56+02:00
merge default. should fix #3821

--HG--
branch : py3.8

- - - - -
146ec12e by Carl Friedrich Bolz-Tereick at 2022-10-08T23:01:21+02:00
merge py3.8

--HG--
branch : py3.9

- - - - -


10 changed files:

- pypy/interpreter/typedef.py
- pypy/module/_io/interp_iobase.py
- pypy/module/_io/test/apptest_bytesio.py
- pypy/module/cpyext/pyobject.py
- pypy/module/cpyext/test/test_unicodeobject.py
- pypy/module/cpyext/typeobject.py
- pypy/module/cpyext/unicodeobject.py
- pypy/module/exceptions/interp_exceptions.py
- pypy/module/exceptions/test/test_exc.py
- pypy/objspace/std/objectobject.py


View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/771ef07f8419e77005ef5ce1e7f9106ca8a19a2a...146ec12e8b606ddb7fc28538e8601f3158e33f08

-- 
View it on Heptapod: 
https://foss.heptapod.net/pypy/pypy/-/compare/771ef07f8419e77005ef5ce1e7f9106ca8a19a2a...146ec12e8b606ddb7fc28538e8601f3158e33f08
You're receiving this email because of your account on foss.heptapod.net.


___
pypy-commit mailing list -- pypy-commit@python.org
To unsubscribe send an email to pypy-commit-le...@python.org
https://mail.python.org/mailman3/lists/pypy-commit.python.org/
Member address: arch...@mail-archive.com