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
bc731506
Commit
bc731506
authored
May 18, 2016
by
doko@ubuntu.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- make some internal symbols static
parent
307676fa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
Modules/_collectionsmodule.c
Modules/_collectionsmodule.c
+1
-1
Modules/_tracemalloc.c
Modules/_tracemalloc.c
+1
-1
Modules/faulthandler.c
Modules/faulthandler.c
+1
-1
No files found.
Modules/_collectionsmodule.c
View file @
bc731506
...
...
@@ -264,7 +264,7 @@ PyDoc_STRVAR(popleft_doc, "Remove and return the leftmost element.");
#define NEEDS_TRIM(deque, maxlen) ((size_t)(maxlen) < (size_t)(Py_SIZE(deque)))
int
static
int
deque_append_internal
(
dequeobject
*
deque
,
PyObject
*
item
,
Py_ssize_t
maxlen
)
{
if
(
deque
->
rightindex
==
BLOCKLEN
-
1
)
{
...
...
Modules/_tracemalloc.c
View file @
bc731506
...
...
@@ -262,7 +262,7 @@ hashtable_hash_pointer_t(_Py_hashtable_t *ht, const void *pkey)
}
int
static
int
hashtable_compare_pointer_t
(
_Py_hashtable_t
*
ht
,
const
void
*
pkey
,
const
_Py_hashtable_entry_t
*
entry
)
{
...
...
Modules/faulthandler.c
View file @
bc731506
...
...
@@ -414,7 +414,7 @@ faulthandler_exc_handler(struct _EXCEPTION_POINTERS *exc_info)
/* Install the handler for fatal signals, faulthandler_fatal_error(). */
int
static
int
faulthandler_enable
(
void
)
{
size_t
i
;
...
...
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