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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
5ab461d1
Commit
5ab461d1
authored
May 24, 2020
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update changelog.
parent
f293ef4b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
2 deletions
+30
-2
CHANGES.rst
CHANGES.rst
+30
-2
No files found.
CHANGES.rst
View file @
5ab461d1
...
@@ -5,11 +5,39 @@ Cython Changelog
...
@@ -5,11 +5,39 @@ Cython Changelog
3.0.0
alpha
6
(
2020
-
0
?-??)
3.0.0
alpha
6
(
2020
-
0
?-??)
==========================
==========================
Features
added
--------------
*
No
/
single
argument
functions
now
accept
keyword
arguments
by
default
in
order
to
comply
with
Python
semantics
.
The
marginally
faster
calling
conventions
``
METH_NOARGS
``
and
``
METH_O
``
that
reject
keyword
arguments
are
still
available
with
the
directive
``@
cython
.
always_allow_keywords
(
False
)``.
(
Github
issue
#
3090
)
*
A
low
-
level
inline
function
``
total_seconds
(
timedelta
)``
was
added
to
``
cpython
.
datetime
``
to
bypass
the
Python
method
call
.
Note
that
this
function
is
not
guaranteed
to
give
exactly
the
same
results
for
very
large
time
intervals
.
Patch
by
Brock
Mendel
.
(
Github
issue
#
3616
)
*
Type
inference
now
understands
that
``
a
,
*
b
=
x
``
assigns
a
list
to
``
b
``.
Bugs
fixed
Bugs
fixed
----------
----------
*
Single
argument
functions
did
not
accept
keyword
arguments
.
*
Includes
all
bug
-
fixes
from
the
0.29.19
release
.
(
Github
issue
#
3090
)
Other
changes
-------------
*
The
``
numpy
``
declarations
were
updated
.
Patch
by
Brock
Mendel
.
(
Github
issue
#
3630
)
*
The
names
of
Cython
's internal types (functions, generator, coroutine, etc.)
are now qualified with the module name of the internal Cython module that is
used for sharing them across Cython implemented modules, for example
``_cython_3_0a5.coroutine``. This was done to avoid making them look like
homeless builtins, to help with debugging, and in order to avoid a CPython
warning according to https://bugs.python.org/issue20204
3.0.0 alpha 5 (2020-05-19)
3.0.0 alpha 5 (2020-05-19)
...
...
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