-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Move internal headers into detail
subdirectory
#1001
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
#pragma once | ||
|
||
#include "common.h" | ||
#include "detail/common.h" | ||
|
||
NAMESPACE_BEGIN(PYBIND11_NAMESPACE) | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
pybind11/class_support.h: Python C API implementation details for py::class_ | ||
pybind11/detail/class.h: Python C API implementation details for py::class_ | ||
|
||
Copyright (c) 2017 Wenzel Jakob <[email protected]> | ||
|
||
|
@@ -9,7 +9,7 @@ | |
|
||
#pragma once | ||
|
||
#include "attr.h" | ||
#include "../attr.h" | ||
|
||
NAMESPACE_BEGIN(PYBIND11_NAMESPACE) | ||
NAMESPACE_BEGIN(detail) | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
pybind11/common.h -- Basic macros | ||
pybind11/detail/common.h -- Basic macros | ||
|
||
Copyright (c) 2016 Wenzel Jakob <[email protected]> | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
pybind11/descr.h: Helper type for concatenating type signatures | ||
pybind11/detail/descr.h: Helper type for concatenating type signatures | ||
either at runtime (C++11) or compile time (C++14) | ||
|
||
Copyright (c) 2016 Wenzel Jakob <[email protected]> | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
pybind11/typeid.h: Compiler-independent access to type identifiers | ||
pybind11/detail/typeid.h: Compiler-independent access to type identifiers | ||
|
||
Copyright (c) 2016 Wenzel Jakob <[email protected]> | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
|
||
#pragma once | ||
|
||
#include "common.h" | ||
#include "detail/common.h" | ||
|
||
NAMESPACE_BEGIN(PYBIND11_NAMESPACE) | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
pybind11/typeid.h: Convenience wrapper classes for basic Python types | ||
pybind11/pytypes.h: Convenience wrapper classes for basic Python types | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good catch 👍 |
||
|
||
Copyright (c) 2016 Wenzel Jakob <[email protected]> | ||
|
||
|
@@ -9,7 +9,7 @@ | |
|
||
#pragma once | ||
|
||
#include "common.h" | ||
#include "detail/common.h" | ||
#include "buffer_info.h" | ||
#include <utility> | ||
#include <type_traits> | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typeid.h
does provide the non-detail
namespacepy::type_id<T>()
, which is a fairly useful function and might be in use. Maybe this one should be left for later?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My thinking here was that
typeid.h
is included anyway bycast.h
and in turn bypybind11.h
, so there's no way to lose out onpy::type_id<T>()
unless someone is using it without anything else from pybind11. But I wouldn't mind reverting it if I'm overlooking something.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's true; it's fine with me to include it in the move. (Maybe
type_id()
should be moved out intocast.h
or somewhere else, but that's not really a big deal—and as an undocumented mostly internal function it was arguably misplaced by not being indetail
in the first place).