Staging
v0.5.1
https://github.com/python/cpython
Revision 76b1913daf883b6592815d139f62f3a7fbe3c322 authored by Dong-hee Na on 13 October 2020, 15:18:58 UTC, committed by GitHub on 13 October 2020, 15:18:58 UTC
_get_socket() already prints a debug message for the host and port.

https://bugs.python.org/issue32793

Automerge-Triggered-By: @maxking
(cherry picked from commit 46a7564578f208df1e0c54fc0520d3b7ca32c981)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
1 parent 33057c7
Raw File
Tip revision: 76b1913daf883b6592815d139f62f3a7fbe3c322 authored by Dong-hee Na on 13 October 2020, 15:18:58 UTC
[3.8] bpo-32793: Fix a duplicate debug message in smtplib (GH-15341) (GH-22683)
Tip revision: 76b1913
build.bat
@rem Used by the buildbot "compile" step.

@rem Clean up
call "%~dp0clean.bat" %*

@rem If you need the buildbots to start fresh (such as when upgrading to
@rem a new version of an external library, especially Tcl/Tk):
@rem 1) uncomment the following line:

@rem    call "%~dp0..\..\PCbuild\get_externals.bat" --clean-only

@rem 2) commit and push
@rem 3) wait for all Windows bots to start a build with that changeset
@rem 4) re-comment, commit and push again

@rem Do the build
call "%~dp0..\..\PCbuild\build.bat" -e -d -k -v %*
back to top