This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Remove warnings from Windows buildbot "clean" script
Type: enhancement Stage: resolved
Components: Build, Windows Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: tim.golden Nosy List: brian.curtin, pitrou, python-dev, tim.golden, zach.ware
Priority: normal Keywords: patch

Created on 2013-10-31 19:15 by zach.ware, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
mask_ssl_clean_warnings.diff zach.ware, 2013-10-31 19:15 Fix warnings review
Messages (4)
msg201844 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2013-10-31 19:15
Here's a patch to remove the compiler warning raised during the "clean" step on the Windows buildbots.  The warning is about the fact that ssl.vcxproj doesn't have an NMakeCleanCommandLine command; the patch adds such a command that simply echos "OpenSSL must be cleaned manually if you want to rebuild it."

Since Tools/buildbot/clean.bat is also called by Tools/buildbot/build.bat, this also removes 4 warnings from the "compile" step as well.
msg201894 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-11-01 13:13
New changeset 599b5200ad51 by Tim Golden in branch 'default':
Issue #19464 Suppress compiler warnings during clean. Patch by Zachary Ware.
http://hg.python.org/cpython/rev/599b5200ad51
msg202014 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-11-03 12:02
New changeset dbff708e393f by Tim Golden in branch '3.3':
Issue #19464 Suppress compiler warnings during clean. Patch by Zachary Ware.
http://hg.python.org/cpython/rev/dbff708e393f

New changeset 6e592d972b86 by Tim Golden in branch 'default':
Issue #19464 Null merge with 3.3
http://hg.python.org/cpython/rev/6e592d972b86
msg202015 - (view) Author: Tim Golden (tim.golden) * (Python committer) Date: 2013-11-03 12:04
Applied to 3.3 & 3.4. Thanks for the patch.
History
Date User Action Args
2022-04-11 14:57:52adminsetgithub: 63663
2013-11-03 12:12:35tim.goldensetstatus: open -> closed
2013-11-03 12:04:54tim.goldensetresolution: fixed
messages: + msg202015
stage: resolved
2013-11-03 12:02:06python-devsetmessages: + msg202014
2013-11-01 13:13:56python-devsetnosy: + python-dev
messages: + msg201894
2013-10-31 20:41:42tim.goldensetassignee: tim.golden
2013-10-31 19:15:34zach.warecreate