FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
matplotlib/src/mplutils.cpp at master · feeds/matplotlib · GitHub
feeds
/
matplotlib
Public
forked from
matplotlib/matplotlib
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
matplotlib
/
src
/
mplutils.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (16 loc) · 388 Bytes
Breadcrumbs
matplotlib
/
src
/
mplutils.cpp
Copy path
File metadata and controls
21 lines (16 loc) · 388 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
-*- mode: c++; c-basic-offset: 4 -*-
*/
#
include
"
mplutils.h
"
int
add_dict_int
(PyObject *dict,
const
char
*key,
long
val)
{
PyObject *valobj;
valobj =
PyLong_FromLong
(val);
if
(valobj ==
NULL
) {
return
1
;
}
if
(
PyDict_SetItemString
(dict, (
char
*)key, valobj)) {
Py_DECREF
(valobj);
return
1
;
}
Py_DECREF
(valobj);
return
0
;
}
Back
|
FazBrowse Home
|
New Git URL