Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
34ce43c8
Commit
34ce43c8
authored
Jul 27, 2022
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update changelog.
parent
72848313
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
25 deletions
+40
-25
CHANGES.rst
CHANGES.rst
+40
-25
No files found.
CHANGES.rst
View file @
34ce43c8
...
@@ -8,33 +8,48 @@ Cython Changelog
...
@@ -8,33 +8,48 @@ Cython Changelog
Bugs
fixed
Bugs
fixed
----------
----------
*
Use
``
importlib
.
util
.
find_spec
()``
instead
of
the
deprecated
``
importlib
.
find_loader
()``
*
Use
``
importlib
.
util
.
find_spec
()``
instead
of
the
deprecated
``
importlib
.
find_loader
()``
function
when
setting
up
the
package
path
at
import
-
time
.
Patch
by
Matti
Picus
.
function
when
setting
up
the
package
path
at
import
-
time
.
(
Github
issue
#
4764
)
Patch
by
Matti
Picus
.
(
Github
issue
#
4764
)
*
Require
the
C
compiler
to
support
the
two
-
arg
form
of
``
va_start
``
on
Python
3.10
*
Require
the
C
compiler
to
support
the
two
-
arg
form
of
``
va_start
``
and
higher
.
Patch
by
Thomas
Caswell
.
on
Python
3.10
and
higher
.
(
Github
issue
#
4820
)
Patch
by
Thomas
Caswell
.
(
Github
issue
#
4820
)
*
Make
``
fused_type
``
subscriptable
in
Shadow
.
py
.
Patch
by
Pfebrer
.
*
Make
``
fused_type
``
subscriptable
in
Shadow
.
py
.
(
Github
issue
#
4842
)
Patch
by
Pfebrer
.
(
Github
issue
#
4842
)
*
Fix
the
incorrect
code
generation
of
the
target
type
in
``
bytearray
``
loops
.
*
Fix
the
incorrect
code
generation
of
the
target
type
in
``
bytearray
``
loops
.
Patch
by
Kenrick
Everett
.
Patch
by
Kenrick
Everett
.
(
Github
issue
#
4108
)
(
Github
issue
#
4108
)
*
Atomic
refcounts
for
memoryviews
were
not
used
on
some
GCC
versions
by
accident
.
Patch
by
Sam
Gross
.
(
Github
issue
#
4915
)
*
Silence
some
GCC
``-
Wconversion
``
warnings
in
C
utility
code
.
*
Silence
some
GCC
``-
Wconversion
``
warnings
in
C
utility
code
.
Patch
by
Lisandro
Dalcin
.
Patch
by
Lisandro
Dalcin
.
(
Github
issue
#
4854
)
(
Github
issue
#
4854
)
*
Tuple
multiplication
was
ignored
in
expressions
such
as
``[*(
1
,)
*
2
]``.
*
Stop
tuple
multiplication
being
ignored
in
expressions
such
as
``[*(
1
,)
*
2
]``.
Patch
by
David
Woods
.
(
Github
issue
#
4864
)
Patch
by
David
Woods
.
(
Github
issue
#
4864
)
*
Calling
``
append
``
methods
on
extension
types
could
fail
to
find
the
method
in
some
cases
.
*
Ensure
that
object
buffers
(
e
.
g
.
``
ndarray
[
object
,
ndim
=
1
]``)
containing
Patch
by
David
Woods
.
(
Github
issue
#
4828
)
*
Ensure
that
object
buffers
(
e
.
g
.
``
ndarray
[
object
,
ndim
=
1
]``)
containing
``
NULL
``
pointers
are
safe
to
use
,
returning
``
None
``
instead
of
the
``
NULL
``
``
NULL
``
pointers
are
safe
to
use
,
returning
``
None
``
instead
of
the
``
NULL
``
pointer
.
Patch
by
Sebastian
Berg
.
pointer
.
(
Github
issue
#
4859
)
Patch
by
Sebastian
Berg
.
(
Github
issue
#
4859
)
*
Using
memoryview
typed
arguments
in
inner
functions
is
now
rejected
as
unsupported
.
Patch
by
David
Woods
.
(
Github
issue
#
4798
)
*
Compilation
could
fail
on
systems
(
e
.
g
.
FIPS
)
that
block
MD5
checksums
at
runtime
.
(
Github
issue
#
4909
)
*
Experimental
adaptations
for
the
CPython
"nogil"
fork
was
added
.
Note
that
there
is
no
official
support
for
this
in
Cython
0.
x
.
Patch
by
Sam
Gross
.
(
Github
issue
#
4912
)
0.29.30
(
2022
-
05
-
16
)
0.29.30
(
2022
-
05
-
16
)
====================
====================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment