Skip to content

Commit ead0528

Browse files
authored
Merge pull request #166 from beeware/docstrings
Enable docstrings in Python builds
2 parents 7f6c08f + 28db9ce commit ead0528

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

Makefile

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,6 @@ $$(PYTHON_SRCDIR-$(target))/Makefile: \
564564
--prefix="$$(PYTHON_INSTALL-$(target))" \
565565
--enable-ipv6 \
566566
--with-openssl="$$(OPENSSL_MERGE-$$(SDK-$(target)))" \
567-
--without-doc-strings \
568567
--without-ensurepip \
569568
ac_cv_file__dev_ptmx=no \
570569
ac_cv_file__dev_ptc=no \
@@ -780,7 +779,6 @@ $$(PYTHON_SRCDIR-$(sdk))/Makefile: \
780779
--enable-universalsdk \
781780
--with-openssl="$$(OPENSSL_MERGE-$(sdk))" \
782781
--with-universal-archs=universal2 \
783-
--without-doc-strings \
784782
--without-ensurepip \
785783
2>&1 | tee -a ../python-$(PYTHON_VERSION).config.log
786784

@@ -1097,12 +1095,12 @@ Python-$(os): dist/Python-$(PYTHON_VER)-$(os)-support.$(BUILD_NUMBER).tar.gz
10971095
clean-Python-$(os):
10981096
@echo ">>> Clean Python build products on $(os)"
10991097
rm -rf \
1100-
build/$(os)/*/python-$(PYTHON_VERSION) \
1101-
build/$(os)/*/python-$(PYTHON_VERSION).*.log \
1102-
install/$(os)/*/python-$(PYTHON_VERSION) \
1103-
install/$(os)/*/python-$(PYTHON_VERSION).*.log \
1104-
merge/$(os)/*/python-$(PYTHON_VERSION) \
1105-
merge/$(os)/*/python-$(PYTHON_VERSION).*.log \
1098+
build/$(os)/*/python-$(PYTHON_VER)* \
1099+
build/$(os)/*/python-$(PYTHON_VER)*.*.log \
1100+
install/$(os)/*/python-$(PYTHON_VER)* \
1101+
install/$(os)/*/python-$(PYTHON_VER)*.*.log \
1102+
merge/$(os)/*/python-$(PYTHON_VER)* \
1103+
merge/$(os)/*/python-$(PYTHON_VER)*.*.log \
11061104
support/$(os) \
11071105
support/*-$(os).*.log \
11081106
dist/Python-$(PYTHON_VER)-$(os)-*

0 commit comments

Comments
 (0)