Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
baced566
Commit
baced566
authored
Oct 18, 2013
by
Brett Cannon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a refleak in _sre
parent
1830601c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
Misc/NEWS
Misc/NEWS
+2
-0
Modules/_sre.c
Modules/_sre.c
+1
-0
No files found.
Misc/NEWS
View file @
baced566
...
...
@@ -54,6 +54,8 @@ Core and Builtins
Library
-------
-
Fix
a
reference
count
leak
in
_sre
.
-
Issue
#
19262
:
Initial
check
in
of
the
'asyncio'
package
(
a
.
k
.
a
.
Tulip
,
a
.
k
.
a
.
PEP
3156
).
There
are
no
docs
yet
,
and
the
PEP
is
slightly
out
of
date
with
the
code
.
This
module
will
have
*
provisional
*
status
...
...
Modules/_sre.c
View file @
baced566
...
...
@@ -2427,6 +2427,7 @@ next:
else
item
=
PyUnicode_Join
(
joiner
,
list
);
Py_DECREF
(
joiner
);
Py_DECREF
(
list
);
if
(
!
item
)
return
NULL
;
}
...
...
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