Skip to content

Commit 5e6c125

Browse files
committed
Merge pull request zeromq#1051 from twhittock/master
Problem: Python tests failing.
2 parents c2793a0 + 921bdfb commit 5e6c125

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

CMakeLists.txt

-2
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,6 @@ install(TARGETS czmq
204204
RUNTIME DESTINATION bin # .dll file
205205
)
206206

207-
include(${CMAKE_CURRENT_SOURCE_DIR}/src/CMakeLists-local.txt) # Optional project-local hook
208-
209207
########################################################################
210208
# pkgconfig
211209
########################################################################

bindings/python/czmq.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ def new_empty():
729729
return Zframe(lib.zframe_new_empty(), True)
730730

731731
@staticmethod
732-
def from(string):
732+
def from_(string):
733733
"""Create a frame with a specified string content."""
734734
return Zframe(lib.zframe_from(string), True)
735735

configure.ac

-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ AC_PROG_SED
5656
AC_PROG_AWK
5757
PKG_PROG_PKG_CONFIG
5858

59-
AX_PROJECT_LOCAL_HOOK # Optional project-local hook (acinclude.m4)
60-
6159
# Code coverage
6260
AC_ARG_WITH(gcov, [AS_HELP_STRING([--with-gcov=yes/no],
6361
[With GCC Code Coverage reporting.])],

0 commit comments

Comments
 (0)