8000 bpo-24821: Fixed the slowing down to 25 times in the searching of some by serhiy-storchaka · Pull Request #505 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-24821: Fixed the slowing down to 25 times in the searching of some #505

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into bpo-24821-find-char-false-positives
  • Loading branch information
serhiy-storchaka authored Mar 10, 2017
commit 009f6f66917f57e0414f46d22df73ecbf8bd6aeb
13 changes: 10 additions & 3 deletions Misc/NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,16 @@ Core and Builtins
- bpo-24821: Fixed the slowing down to 25 times in the searching of some
unlucky Unicode characters.

- bpo-29695: Using "x" as a keyword argument in int(), bool() and float() and
using "sequence" as a keyword argument in list() and tuple() are deprecated.
Specify the value as a positional argument instead.
- bpo-29568: Escaped percent "%%" in the format string for classic string
formatting no longer allows any characters between two percents.

- bpo-29714: Fix a regression that bytes format may fail when containing zero
bytes inside.

- bpo-29695: bool(), float(), list() and tuple() no longer take keyword arguments.
The first argument of int() can now be passes only as positional argument.

- bpo-20087: Prefer glibc's list of locale aliases to the X11 ones.

- bpo-28893: Set correct __cause__ for errors about invalid awaitables
returned from __aiter__ and __anext__.
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0