Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
gaoqiong
pybind11
Commits
8cb6cb33
Commit
8cb6cb33
authored
Apr 17, 2016
by
Wenzel Jakob
Browse files
minor cleanups in common.h; updated author info and copyright year
parent
bf0c7dcc
Changes
31
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
15 additions
and
15 deletions
+15
-15
include/pybind11/common.h
include/pybind11/common.h
+5
-5
include/pybind11/complex.h
include/pybind11/complex.h
+1
-1
include/pybind11/descr.h
include/pybind11/descr.h
+1
-1
include/pybind11/functional.h
include/pybind11/functional.h
+1
-1
include/pybind11/numpy.h
include/pybind11/numpy.h
+1
-1
include/pybind11/operators.h
include/pybind11/operators.h
+1
-1
include/pybind11/pybind11.h
include/pybind11/pybind11.h
+1
-1
include/pybind11/pytypes.h
include/pybind11/pytypes.h
+1
-1
include/pybind11/stl.h
include/pybind11/stl.h
+1
-1
include/pybind11/typeid.h
include/pybind11/typeid.h
+1
-1
setup.py
setup.py
+1
-1
No files found.
include/pybind11/common.h
View file @
8cb6cb33
/*
pybind11/common.h -- Basic macros
Copyright (c) 201
5
Wenzel Jakob <wenzel
@inf.ethz
.ch>
Copyright (c) 201
6
Wenzel Jakob <wenzel
.jakob@epfl
.ch>
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
...
...
@@ -39,7 +39,7 @@
# pragma warning(push)
# pragma warning(disable: 4510 4610 4512 4005)
# if _DEBUG
# define _DEBUG_MARKER
# define
PYBIND11
_DEBUG_MARKER
# undef _DEBUG
# endif
#endif
...
...
@@ -58,10 +58,10 @@
#endif
#if defined(_MSC_VER)
# if defined(_DEBUG_MARKER)
# if defined(
PYBIND11
_DEBUG_MARKER)
# define _DEBUG
# undef _DEBUG_MARKER
#endif
#
undef
PYBIND11
_DEBUG_MARKER
#
endif
# pragma warning(pop)
#endif
...
...
include/pybind11/complex.h
View file @
8cb6cb33
/*
pybind11/complex.h: Complex number support
Copyright (c) 201
5
Wenzel Jakob <wenzel
@inf.ethz
.ch>
Copyright (c) 201
6
Wenzel Jakob <wenzel
.jakob@epfl
.ch>
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/descr.h
View file @
8cb6cb33
...
...
@@ -2,7 +2,7 @@
pybind11/descr.h: Helper type for concatenating type signatures
either at runtime (C++11) or compile time (C++14)
Copyright (c) 201
5
Wenzel Jakob <wenzel
@inf.ethz
.ch>
Copyright (c) 201
6
Wenzel Jakob <wenzel
.jakob@epfl
.ch>
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/functional.h
View file @
8cb6cb33
/*
pybind11/functional.h: std::function<> support
Copyright (c) 201
5
Wenzel Jakob <wenzel
@inf.ethz
.ch>
Copyright (c) 201
6
Wenzel Jakob <wenzel
.jakob@epfl
.ch>
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/numpy.h
View file @
8cb6cb33
/*
pybind11/numpy.h: Basic NumPy support, auto-vectorization support
Copyright (c) 201
5
Wenzel Jakob <wenzel
@inf.ethz
.ch>
Copyright (c) 201
6
Wenzel Jakob <wenzel
.jakob@epfl
.ch>
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/operators.h
View file @
8cb6cb33
/*
pybind11/operator.h: Metatemplates for operator overloading
Copyright (c) 201
5
Wenzel Jakob <wenzel
@inf.ethz
.ch>
Copyright (c) 201
6
Wenzel Jakob <wenzel
.jakob@epfl
.ch>
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/pybind11.h
View file @
8cb6cb33
...
...
@@ -2,7 +2,7 @@
pybind11/pybind11.h: Main header file of the C++11 python
binding generator library
Copyright (c) 201
5
Wenzel Jakob <wenzel
@inf.ethz
.ch>
Copyright (c) 201
6
Wenzel Jakob <wenzel
.jakob@epfl
.ch>
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/pytypes.h
View file @
8cb6cb33
/*
pybind11/typeid.h: Convenience wrapper classes for basic Python types
Copyright (c) 201
5
Wenzel Jakob <wenzel
@inf.ethz
.ch>
Copyright (c) 201
6
Wenzel Jakob <wenzel
.jakob@epfl
.ch>
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/stl.h
View file @
8cb6cb33
/*
pybind11/complex.h: Complex number support
Copyright (c) 201
5
Wenzel Jakob <wenzel
@inf.ethz
.ch>
Copyright (c) 201
6
Wenzel Jakob <wenzel
.jakob@epfl
.ch>
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/typeid.h
View file @
8cb6cb33
/*
pybind11/typeid.h: Compiler-independent access to type identifiers
Copyright (c) 201
5
Wenzel Jakob <wenzel
@inf.ethz
.ch>
Copyright (c) 201
6
Wenzel Jakob <wenzel
.jakob@epfl
.ch>
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
...
...
setup.py
View file @
8cb6cb33
...
...
@@ -10,7 +10,7 @@ setup(
version
=
__version__
,
description
=
'Seamless operability between C++11 and Python'
,
author
=
'Wenzel Jakob'
,
author_email
=
'wenzel
@inf.ethz
.ch'
,
author_email
=
'wenzel
.jakob@epfl
.ch'
,
url
=
'https://github.com/wjakob/pybind11'
,
download_url
=
'https://github.com/wjakob/pybind11/tarball/v'
+
__version__
,
packages
=
[
'pybind11'
],
...
...
Prev
1
2
Next
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