Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
8cb6cb33
Commit
8cb6cb33
authored
Apr 17, 2016
by
Wenzel Jakob
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor cleanups in common.h; updated author info and copyright year
parent
bf0c7dcc
Hide whitespace changes
Inline
Side-by-side
Showing
31 changed files
with
35 additions
and
35 deletions
+35
-35
example/example.cpp
+1
-1
example/example1.cpp
+1
-1
example/example10.cpp
+1
-1
example/example11.cpp
+1
-1
example/example12.cpp
+1
-1
example/example13.cpp
+1
-1
example/example14.cpp
+1
-1
example/example15.cpp
+1
-1
example/example16.cpp
+1
-1
example/example2.cpp
+1
-1
example/example3.cpp
+1
-1
example/example4.cpp
+1
-1
example/example5.cpp
+1
-1
example/example6.cpp
+1
-1
example/example7.cpp
+1
-1
example/example8.cpp
+1
-1
example/example9.cpp
+1
-1
example/issues.cpp
+1
-1
include/pybind11/attr.h
+1
-1
include/pybind11/cast.h
+1
-1
include/pybind11/common.h
+5
-5
include/pybind11/complex.h
+1
-1
include/pybind11/descr.h
+1
-1
include/pybind11/functional.h
+1
-1
include/pybind11/numpy.h
+1
-1
include/pybind11/operators.h
+1
-1
include/pybind11/pybind11.h
+1
-1
include/pybind11/pytypes.h
+1
-1
include/pybind11/stl.h
+1
-1
include/pybind11/typeid.h
+1
-1
setup.py
+1
-1
No files found.
example/example.cpp
View file @
8cb6cb33
/*
/*
example/example.cpp -- pybind example plugin
example/example.cpp -- pybind example plugin
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example1.cpp
View file @
8cb6cb33
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
example/example1.cpp -- constructors, deconstructors, attribute access,
example/example1.cpp -- constructors, deconstructors, attribute access,
__str__, argument and return value conventions
__str__, argument and return value conventions
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example10.cpp
View file @
8cb6cb33
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
example/example10.cpp -- auto-vectorize functions over NumPy array
example/example10.cpp -- auto-vectorize functions over NumPy array
arguments
arguments
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example11.cpp
View file @
8cb6cb33
/*
/*
example/example11.cpp -- keyword arguments and default values
example/example11.cpp -- keyword arguments and default values
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example12.cpp
View file @
8cb6cb33
/*
/*
example/example12.cpp -- overriding virtual functions from Python
example/example12.cpp -- overriding virtual functions from Python
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example13.cpp
View file @
8cb6cb33
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
example/example13.cpp -- keep_alive modifier (pybind11's version
example/example13.cpp -- keep_alive modifier (pybind11's version
of Boost.Python's with_custodian_and_ward / with_custodian_and_ward_postcall)
of Boost.Python's with_custodian_and_ward / with_custodian_and_ward_postcall)
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example14.cpp
View file @
8cb6cb33
/*
/*
example/example14.cpp -- opaque types, passing void pointers
example/example14.cpp -- opaque types, passing void pointers
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example15.cpp
View file @
8cb6cb33
/*
/*
example/example15.cpp -- pickle support
example/example15.cpp -- pickle 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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example16.cpp
View file @
8cb6cb33
/*
/*
example/example16.cpp -- automatic upcasting for polymorphic types
example/example16.cpp -- automatic upcasting for polymorphic 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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example2.cpp
View file @
8cb6cb33
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
example/example2.cpp2 -- singleton design pattern, static functions and
example/example2.cpp2 -- singleton design pattern, static functions and
variables, passing and interacting with Python types
variables, passing and interacting with 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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example3.cpp
View file @
8cb6cb33
/*
/*
example/example3.cpp -- operator overloading
example/example3.cpp -- 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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example4.cpp
View file @
8cb6cb33
/*
/*
example/example4.cpp -- global constants and functions, enumerations, raw byte strings
example/example4.cpp -- global constants and functions, enumerations, raw byte strings
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example5.cpp
View file @
8cb6cb33
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
example/example5.cpp -- inheritance, callbacks, acquiring and releasing the
example/example5.cpp -- inheritance, callbacks, acquiring and releasing the
global interpreter lock
global interpreter lock
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example6.cpp
View file @
8cb6cb33
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
example/example6.cpp -- supporting Pythons' sequence protocol, iterators,
example/example6.cpp -- supporting Pythons' sequence protocol, iterators,
etc.
etc.
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example7.cpp
View file @
8cb6cb33
/*
/*
example/example7.cpp -- supporting Pythons' buffer protocol
example/example7.cpp -- supporting Pythons' buffer protocol
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example8.cpp
View file @
8cb6cb33
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
example/example8.cpp -- binding classes with custom reference counting,
example/example8.cpp -- binding classes with custom reference counting,
implicit conversions between types
implicit conversions between 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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/example9.cpp
View file @
8cb6cb33
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
example/example9.cpp -- nested modules, importing modules, and
example/example9.cpp -- nested modules, importing modules, and
internal references
internal references
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
example/issues.cpp
View file @
8cb6cb33
/*
/*
example/issues.cpp -- collection of testcases for miscellaneous issues
example/issues.cpp -- collection of testcases for miscellaneous issues
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/attr.h
View file @
8cb6cb33
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
pybind11/pybind11.h: Infrastructure for processing custom
pybind11/pybind11.h: Infrastructure for processing custom
type and function attributes
type and function attributes
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/cast.h
View file @
8cb6cb33
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
pybind11/cast.h: Partial template specializations to cast between
pybind11/cast.h: Partial template specializations to cast between
C++ and Python types
C++ and 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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/common.h
View file @
8cb6cb33
/*
/*
pybind11/common.h -- Basic macros
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
# pragma warning(push)
# pragma warning(push)
# pragma warning(disable: 4510 4610 4512 4005)
# pragma warning(disable: 4510 4610 4512 4005)
# if _DEBUG
# if _DEBUG
# define _DEBUG_MARKER
# define
PYBIND11
_DEBUG_MARKER
# undef _DEBUG
# undef _DEBUG
# endif
# endif
#endif
#endif
...
@@ -58,10 +58,10 @@
...
@@ -58,10 +58,10 @@
#endif
#endif
#if defined(_MSC_VER)
#if defined(_MSC_VER)
# if defined(_DEBUG_MARKER)
# if defined(
PYBIND11
_DEBUG_MARKER)
# define _DEBUG
# define _DEBUG
#
undef
_DEBUG_MARKER
#
undef PYBIND11
_DEBUG_MARKER
#endif
#
endif
# pragma warning(pop)
# pragma warning(pop)
#endif
#endif
...
...
include/pybind11/complex.h
View file @
8cb6cb33
/*
/*
pybind11/complex.h: Complex number support
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/descr.h
View file @
8cb6cb33
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
pybind11/descr.h: Helper type for concatenating type signatures
pybind11/descr.h: Helper type for concatenating type signatures
either at runtime (C++11) or compile time (C++14)
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/functional.h
View file @
8cb6cb33
/*
/*
pybind11/functional.h: std::function<> support
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
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
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
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
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/pybind11.h
View file @
8cb6cb33
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
pybind11/pybind11.h: Main header file of the C++11 python
pybind11/pybind11.h: Main header file of the C++11 python
binding generator library
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
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
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
include/pybind11/stl.h
View file @
8cb6cb33
/*
/*
pybind11/complex.h: Complex number support
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
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
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
All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
BSD-style license that can be found in the LICENSE file.
...
...
setup.py
View file @
8cb6cb33
...
@@ -10,7 +10,7 @@ setup(
...
@@ -10,7 +10,7 @@ setup(
version
=
__version__
,
version
=
__version__
,
description
=
'Seamless operability between C++11 and Python'
,
description
=
'Seamless operability between C++11 and Python'
,
author
=
'Wenzel Jakob'
,
author
=
'Wenzel Jakob'
,
author_email
=
'wenzel
@inf.ethz
.ch'
,
author_email
=
'wenzel
.jakob@epfl
.ch'
,
url
=
'https://github.com/wjakob/pybind11'
,
url
=
'https://github.com/wjakob/pybind11'
,
download_url
=
'https://github.com/wjakob/pybind11/tarball/v'
+
__version__
,
download_url
=
'https://github.com/wjakob/pybind11/tarball/v'
+
__version__
,
packages
=
[
'pybind11'
],
packages
=
[
'pybind11'
],
...
...
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