Skip to content

Commit 1004ed3

Browse files
authored
Merge pull request jupyter-xeus#335 from martinRenou/rename_xcomm
Rename xcomm file to xpython_kernel
2 parents 1dc8440 + 3c60900 commit 1004ed3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,6 @@ endif ()
118118
# ============
119119

120120
set(XEUS_PYTHON_SRC
121-
src/xcomm.cpp
122-
src/xcomm.hpp
123121
src/xdebugger.cpp
124122
src/xdisplay.cpp
125123
src/xdisplay.hpp
@@ -138,6 +136,8 @@ set(XEUS_PYTHON_SRC
138136
src/xnullcontext.hpp
139137
src/xptvsd_client.cpp
140138
src/xptvsd_client.hpp
139+
src/xpython_kernel.cpp
140+
src/xpython_kernel.hpp
141141
src/xstream.cpp
142142
src/xstream.hpp
143143
src/xtraceback.cpp
@@ -184,7 +184,7 @@ macro(xpyt_set_common_options target_name)
184184
CMAKE_CXX_COMPILER_ID MATCHES "Intel")
185185

186186
target_compile_options(${target_name} PUBLIC -Wunused-parameter -Wextra -Wreorder)
187-
187+
188188
# Mtune generic/native
189189
if (XPYT_DISABLE_ARCH_NATIVE AND NOT XPYT_DISABLE_TUNE_GENERIC)
190190
target_compile_options(${target_name} PUBLIC -mtune=generic)

src/xinterpreter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#include "xeus-python/xinterpreter.hpp"
2626
#include "xeus-python/xeus_python_config.hpp"
2727

28-
#include "xcomm.hpp"
28+
#include "xpython_kernel.hpp"
2929
#include "xdisplay.hpp"
3030
#include "xinput.hpp"
3131
#include "xinspect.hpp"

src/xcomm.cpp renamed to src/xpython_kernel.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include "pybind11/functional.h"
2323
#include "pybind11/eval.h"
2424

25-
#include "xcomm.hpp"
25+
#include "xpython_kernel.hpp"
2626
#include "xutils.hpp"
2727
#include "xinteractiveshell.hpp"
2828

File renamed without changes.

0 commit comments

Comments
 (0)