[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2019-08-02 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2018-12-17 Thread miss-islington
miss-islington added the comment: New changeset c367d52a74781b2c9ffd9e29722fbdfc0234408c by Miss Islington (bot) in branch '3.7': bpo-23451: Update time.monotonic() documentation (GH-11190) https://github.com/python/cpython/commit/c367d52a74781b2c9ffd9e29722fbdfc0234408c -- nosy:

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2018-12-17 Thread STINNER Victor
STINNER Victor added the comment: New changeset 3ab064e80a9be1e6e9c62437fffb92bde9c5e1fb by Victor Stinner in branch 'master': bpo-23451: Update time.monotonic() documentation (GH-11190) https://github.com/python/cpython/commit/3ab064e80a9be1e6e9c62437fffb92bde9c5e1fb -- nosy:

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2018-12-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +10430 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2018-12-17 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +10428 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2017-06-28 Thread Steve Dower
Steve Dower added the comment: There is only one deprecation warning left in current builds: ..\Modules\expat\xmlparse.c(796): warning C4996: 'getenv': This function or variable may be unsafe. Consider using _dupenv_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2017-06-28 Thread Steve Dower
Steve Dower added the comment: New changeset 9f3bdcb643623e07497af2fc35f0496c2302f1be by Steve Dower (Segev Finer) in branch 'master': bpo-23451: Fix socket deprecation warnings in socketmodule.c (#2318) https://github.com/python/cpython/commit/9f3bdcb643623e07497af2fc35f0496c2302f1be

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2017-06-21 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2017-06-21 Thread Segev Finer
Changes by Segev Finer : -- pull_requests: +2368 ___ Python tracker ___ ___

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-03-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset f64d0b99d405 by Victor Stinner in branch 'default': Issue #23451, #22117: Python 3.5 now requires Windows Vista or newer, so https://hg.python.org/cpython/rev/f64d0b99d405 -- ___ Python tracker

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-03-02 Thread Steve Dower
Steve Dower added the comment: The _WINSOCK_DEPRECATED_NO_WARNINGS question is still open, but the rest of the deprecations should be clear now. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23451

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-03-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 57e2549cc9a6 by Steve Dower in branch 'default': Issue #23451: Update pyconfig.h for Windows to require Vista headers and remove unnecessary version checks. https://hg.python.org/cpython/rev/57e2549cc9a6 -- nosy: +python-dev

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-25 Thread Steve Dower
Steve Dower added the comment: Anyone got a chance to double-check my patch for me? I think it's fine, unless someone really wants me to turn all the #ifdef CMSG_LEN checks into #ifdef HAVE_CMSG (which I *think* would require autoconf updates, which I am totally unqualified to do...)

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Mark Lawrence
Mark Lawrence added the comment: Using Microsoft Visual Studio Express 2013 for Windows Desktop. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue23451 ___

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Mark Lawrence
New submission from Mark Lawrence: Raised as a placeholder. -- components: Build, Windows files: Deprecations.txt messages: 235778 nosy: BreamoreBoy, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: Deprecation warnings building 3.5 Visual Studio

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Steve Dower
Steve Dower added the comment: Patch attached. Interesting, once you declare Vista as the minimum API set, WinSock claims to support CMSG_LEN which enables sendmsg() et al support in _socket. Since the WinSock API bears little relation to the POSIX(?) API, it doesn't build, so I've just

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-11 Thread Steve Dower
Steve Dower added the comment: Adding 'socket' nosy list, as Antoine may have a stronger opinion about changing _socket to avoid these warnings - they aren't all in Windows-exclusive code. Or I'm happy to add the suppression to the build if that's the better option. I'll work up a patch for