[issue34219] distutils: build_ext -D wrongly assume defining a symbol with no value

2018-07-25 Thread monson
New submission from monson : `python setup.py build_ext -D zero,one=v1,two=k2=v2` will generate preprocessor argument `-D zero=1 -D one=v1=1 -D two=k2=v2=1`. Expect `-D zero=1 -D one=v1 -D two=k2=v2`. -- components: Library (Lib) messages: 322344 nosy: monson priority: normal severity

[issue34219] distutils: build_ext -D wrongly assume defining a symbol with no value

2018-07-25 Thread monson
Change by monson : -- keywords: +patch pull_requests: +7982 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue34219> ___ ___ Python-

[issue34515] lib2to3: support non-ASCII identifiers

2018-08-26 Thread monson
New submission from monson : Python 3.0 introduces additional characters from outside the ASCII range (see PEP 3131). see https://docs.python.org/3/reference/lexical_analysis.html#identifiers But lib2to3 can't tokenize them corretly. ``` $ echo 'δΈ­ = 1' | python3.7 -m lib2to3

[issue34515] lib2to3: support non-ASCII identifiers

2018-08-26 Thread monson
Change by monson : -- keywords: +patch pull_requests: +8426 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue34515> ___ ___ Python-

[issue34219] distutils: build_ext -D wrongly assume defining a symbol with no value

2018-08-27 Thread monson
Change by monson : -- versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue34219> ___ ___ Python-bugs-list mailing list Unsub

[issue34515] lib2to3: support non-ASCII identifiers

2018-08-27 Thread monson
Change by monson : -- versions: +Python 3.8 -Python 3.7 ___ Python tracker <https://bugs.python.org/issue34515> ___ ___ Python-bugs-list mailing list Unsub

[issue33338] [lib2to3] Synchronize token.py and tokenize.py with the standard library

2018-09-15 Thread monson
Change by monson : -- pull_requests: +8757 ___ Python tracker <https://bugs.python.org/issue8> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15602] zipfile: wrong encoding charset of member filename

2012-08-08 Thread monson
New submission from monson: In /cpython/Lib/zipfile.py, there are some codes like if flags & 0x800: # UTF-8 file names extension filename = filename.decode('utf-8') else: # Historical ZIP fil

[issue17540] logging formatter support 'style' key in dictionary config

2013-03-24 Thread monson
New submission from monson: Since from version 3.2 ``style`` parameter was added in class logging.Formatter, it should be availably configured in configuration dictionary or file. -- components: Library (Lib) files: add-logging-config-key-style.patch keywords: patch messages: 185188

[issue36944] Add support for ARM64 to libffi

2020-05-07 Thread Paul Monson
Paul Monson added the comment: Yes I think this can be closed. Thank you! -- status: pending -> open ___ Python tracker <https://bugs.python.org/issu

[issue37553] SendfileUsingSendTest tests timeout too short for Windows ARM32

2020-10-16 Thread Paul Monson
Paul Monson added the comment: Yes. On Fri, Oct 16, 2020 at 3:41 PM Irit Katriel wrote: > > Irit Katriel added the comment: > > Can this be closed? > > -- > nosy: +iritkatriel > > ___ > Python tracker > &l

[issue35947] Update libffi_msvc to current version of libffi

2019-05-17 Thread Paul Monson
Paul Monson added the comment: Would you like me to submit a PR to the What's New doc? -- ___ Python tracker <https://bugs.python.org/issue35947> ___ ___

[issue36511] Add Windows ARM32 buildbot

2019-05-20 Thread Paul Monson
Change by Paul Monson : -- pull_requests: +13363 ___ Python tracker <https://bugs.python.org/issue36511> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36941] Windows build changes for Windows ARM64

2019-05-21 Thread Paul Monson
Change by Paul Monson : -- pull_requests: +13389 ___ Python tracker <https://bugs.python.org/issue36941> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36799] Typo in ctypes documentation

2019-05-21 Thread Paul Monson
Change by Paul Monson : -- pull_requests: +13393 ___ Python tracker <https://bugs.python.org/issue36799> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36799] Typo in ctypes documentation

2019-05-21 Thread Paul Monson
Change by Paul Monson : -- pull_requests: +13400 ___ Python tracker <https://bugs.python.org/issue36799> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36511] Add Windows ARM32 buildbot

2019-05-23 Thread Paul Monson
Paul Monson added the comment: I did a quick test and it looks like exit /b %ERRORLEVEL% will propagate the exit code. -- ___ Python tracker <https://bugs.python.org/issue36

[issue36511] Add Windows ARM32 buildbot

2019-05-23 Thread Paul Monson
Change by Paul Monson : -- pull_requests: +13443 ___ Python tracker <https://bugs.python.org/issue36511> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37140] ctypes change made clang fail to build

2019-06-03 Thread Paul Monson
Paul Monson added the comment: The change causing the build failure comes from this commit. https://github.com/python/cpython/pull/3806/commits/ea8a0dcea68409d37f3ad9e60e42777c76ad903b The commit comment says: "Fix copy of structures when passed by value." Steve, do you recall

[issue37140] ctypes change made clang fail to build

2019-06-03 Thread Paul Monson
Paul Monson added the comment: If I undo the changes to StructUnionType_paramfunc then test_pass_by_value (ctypes.test.test_structures.StructureTestCase) fails on x64 on Windows. Looking at the code I don't think this is specific to Windows. This is a test for fixing this issue:

[issue37140] ctypes change made clang fail to build

2019-06-03 Thread Paul Monson
Paul Monson added the comment: Reading the related bugs more carefully I think the struct/union passing conventions are different on Windows x64 and Linux. I have a fix which works for Windows but preserves the prior code for Linux

[issue37140] ctypes change made clang fail to build

2019-06-03 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +13681 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13796 ___ Python tracker <https://bugs.python.org/issu

[issue37140] ctypes change made clang fail to build

2019-06-04 Thread Paul Monson
Paul Monson added the comment: I added a unittest to the PR that illustrates the problem. It doesn't pass yet. -- ___ Python tracker <https://bugs.python.org/is

[issue37181] fix test_regrtest failures on Windows arm64

2019-06-06 Thread Paul Monson
Change by Paul Monson : -- components: Tests, Windows nosy: Paul Monson, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: fix test_regrtest failures on Windows arm64 type: enhancement versions: Python 3.8, Python 3.9

[issue37181] fix test_regrtest failures on Windows arm64

2019-06-06 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +13748 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13872 ___ Python tracker <https://bugs.python.org/issu

[issue37201] fix test_distutils failures for Windows ARM64

2019-06-07 Thread Paul Monson
New submission from Paul Monson : There are a few places where ARM64 is not correctly specified in order for distutils to work for on-target builds using Visual Studio (32-bit x86 emulation). -- components: Tests, Windows messages: 345008 nosy: Paul Monson, paul.moore, steve.dower

[issue37201] fix test_distutils failures for Windows ARM64

2019-06-07 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +13777 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13902 ___ Python tracker <https://bugs.python.org/issu

[issue37236] fix test_complex for Windows arm64

2019-06-11 Thread Paul Monson
New submission from Paul Monson : There is a compiler optimization error on Windows ARM64 that causes test_truediv (test.test_complex.ComplexTest) to fail with ZeroDivisionError: complex division by zero. Adding a pragma optimize around the affected function fixes the issue. I am also

[issue37236] fix test_complex for Windows arm64

2019-06-11 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +13847 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13983 ___ Python tracker <https://bugs.python.org/issu

[issue37238] Enable building for Windows using Visual Studio 2019

2019-06-11 Thread Paul Monson
New submission from Paul Monson : What is the normal process for lighting up a new Visual Studio? -- components: Build, Windows messages: 345269 nosy: Paul Monson, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: Enable building for

[issue37238] Enable building for Windows using Visual Studio 2019

2019-06-11 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +13851 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13988 ___ Python tracker <https://bugs.python.org/issu

[issue37239] Add headless development preset layout

2019-06-11 Thread Paul Monson
New submission from Paul Monson : Add preset-headless preset which has everything that preset-default has minus tcltk and idle -- components: Build, Windows messages: 345275 nosy: Paul Monson, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status

[issue37239] Add headless development preset layout

2019-06-11 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +13852 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13989 ___ Python tracker <https://bugs.python.org/issu

[issue37239] Add headless development preset layout

2019-06-12 Thread Paul Monson
Paul Monson added the comment: Thanks for the feedback Steve Looking at the differences between the change I proposed and the nuget package I agree that "--preset-nuget --include-..." is a better approach. Closing this issue and the pu

[issue37239] Add headless development preset layout

2019-06-12 Thread Paul Monson
Change by Paul Monson : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue37239> ___ ___ Pyth

[issue37140] ctypes change made clang fail to build

2019-06-12 Thread Paul Monson
Paul Monson added the comment: I did some reading about parameter passing and it's still not clear to me whether https://bugs.python.org/issue37140 is a bug in CPython or whether the clang bindings were relying on incorrect parameter passing behavior to work. The change in

[issue36779] time.tzname returns empty string on Windows if default codepage is a Unicode codepage

2019-06-12 Thread Paul Monson
Change by Paul Monson : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue36779> ___ ___ Pyth

[issue37288] Windows arm32 buildbot build is broken

2019-06-14 Thread Paul Monson
New submission from Paul Monson : https://github.com/python/cpython/pull/14065 breaks building with --no-tkinter. Which breaks the Windows arm32 buildbot `C:\Users\buildbot\buildarea\3.x.monson-win-arm32.nondebug\build\PCbuild\python.vcxproj(158,9): error MSB4184: The expression

[issue37288] Fix Windows build when --no-tkinter is specified

2019-06-14 Thread Paul Monson
Paul Monson added the comment: Change title: Fix Windows build when --no-tkinter is specified I noticed this because the Windows arm32 buildbot build was broken. -- title: Windows arm32 buildbot build is broken -> Fix Windows build when --no-tkinter is specif

[issue37288] Fix Windows build when --no-tkinter is specified

2019-06-14 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +13951 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14096 ___ Python tracker <https://bugs.python.org/issu

[issue36511] Add Windows ARM32 buildbot

2019-06-19 Thread Paul Monson
Change by Paul Monson : -- pull_requests: +14083 pull_request: https://github.com/python/cpython/pull/14251 ___ Python tracker <https://bugs.python.org/issue36

[issue36511] Add Windows ARM32 buildbot

2019-06-20 Thread Paul Monson
Change by Paul Monson : -- pull_requests: +14103 pull_request: https://github.com/python/cpython/pull/14280 ___ Python tracker <https://bugs.python.org/issue36

[issue37370] AF_UNIX should be supported on Windows

2019-06-21 Thread Paul Monson
New submission from Paul Monson : AF_UNIX has been supported on windows since version 1803 (build 17134) see https://devblogs.microsoft.com/commandline/af_unix-comes-to-windows/ Enabling support for AF_UNIX will enable better peer-to-peer connectivity scenarios for Azure IoT Edge. The

[issue37370] AF_UNIX should be supported on Windows

2019-06-21 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +14126 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14302 ___ Python tracker <https://bugs.python.org/issu

[issue37370] AF_UNIX should be supported on Windows

2019-06-24 Thread Paul Monson
Paul Monson added the comment: Thanks Zackery. Closing as duplicate -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue33408] AF_UNIX is now supported in Windows

2019-06-24 Thread Paul Monson
Change by Paul Monson : -- nosy: +Paul Monson ___ Python tracker <https://bugs.python.org/issue33408> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36511] Add Windows ARM32 buildbot

2019-06-27 Thread Paul Monson
Change by Paul Monson : -- pull_requests: +14247 pull_request: https://github.com/python/cpython/pull/14431 ___ Python tracker <https://bugs.python.org/issue36

[issue37201] fix test_distutils failures for Windows ARM64

2019-06-27 Thread Paul Monson
Change by Paul Monson : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue37201> ___ ___ Pyth

[issue37236] fix test_complex for Windows arm64

2019-06-27 Thread Paul Monson
Change by Paul Monson : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue37236> ___ ___ Pyth

[issue36941] Windows build changes for Windows ARM64

2019-06-27 Thread Paul Monson
Change by Paul Monson : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue36941> ___ ___ Pyth

[issue36942] Windows code changes for Windows ARM64

2019-06-27 Thread Paul Monson
Change by Paul Monson : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue36942> ___ ___ Pyth

[issue36943] Windows test changes for Windows ARM64

2019-06-27 Thread Paul Monson
Change by Paul Monson : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue36943> ___ ___ Pyth

[issue36944] Add support for ARM64 to libffi

2019-06-27 Thread Paul Monson
Paul Monson added the comment: submitted new PR to fix build and test issues for Windows ARM64 in Python https://github.com/libffi/libffi/pull/496 -- ___ Python tracker <https://bugs.python.org/issue36

[issue36511] Add Windows ARM32 buildbot

2019-06-28 Thread Paul Monson
Change by Paul Monson : -- pull_requests: +14277 pull_request: https://github.com/python/cpython/pull/14460 ___ Python tracker <https://bugs.python.org/issue36

[issue33408] Enable AF_UNIX support in Windows

2019-07-10 Thread Paul Monson
Paul Monson added the comment: I've been asked by my team to investigate what is required to enable AF_UNIX in Python. Is anyone else actively investigating this? I did a prelinary investigation and the impact on test in test_sockets was pretty simple. However there were 26

[issue37552] [Windows] strptime/strftime return invalid results with UCRT version 17763.615

2019-07-10 Thread Paul Monson
New submission from Paul Monson : strptime/strftime return invalid results when using UCRT version 17763.615 -- components: Tests, Windows messages: 347638 nosy: Paul Monson, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: [Windows

[issue37552] [Windows] strptime/strftime return invalid results with UCRT version 17763.615

2019-07-10 Thread Paul Monson
Change by Paul Monson : -- type: -> behavior ___ Python tracker <https://bugs.python.org/issue37552> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue37552] [Windows] strptime/strftime return invalid results with UCRT version 17763.615

2019-07-10 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +14494 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14460 ___ Python tracker <https://bugs.python.org/issu

[issue37553] SendfileUsingSendTest tests timeout too short for Windows ARM32

2019-07-10 Thread Paul Monson
New submission from Paul Monson : 2 seconds doesn't seem to be a long enough timeout for os.sendfile tests on Windows ARM32 -- components: Tests, Windows messages: 347643 nosy: Paul Monson, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status:

[issue37553] SendfileUsingSendTest tests timeout too short for Windows ARM32

2019-07-11 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +14516 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14716 ___ Python tracker <https://bugs.python.org/issu

[issue33408] Enable AF_UNIX support in Windows

2019-07-17 Thread Paul Monson
Paul Monson added the comment: I don't know if datagram support is coming to AF_UNIX on Windows. The changes will only add the flag on Windows, and will enable stream sockets to use AF_UNIX on Windows. In mind this isn't breaking datagram support. It is true that it's a

[issue33408] Enable AF_UNIX support in Windows

2019-07-17 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +14617 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14823 ___ Python tracker <https://bugs.python.org/issu

[issue33408] Enable AF_UNIX support in Windows

2019-08-02 Thread Paul Monson
Paul Monson added the comment: If you try to create a datagram socket with the current AF_UNIX changes on Windows the error is: OSError: [WinError 10047] An address incompatible with the requested protocol was used All of the examples given will fail to load with AttributeError on Windows

[issue36511] Add Windows ARM32 buildbot

2019-08-08 Thread Paul Monson
Change by Paul Monson : -- pull_requests: +14913 pull_request: https://github.com/python/cpython/pull/15181 ___ Python tracker <https://bugs.python.org/issue36

[issue35920] Windows 10 ARM32 platform support

2019-02-06 Thread Paul Monson
Change by Paul Monson : -- nosy: +Paul Monson ___ Python tracker <https://bugs.python.org/issue35920> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35740] openssl version 1.1.1 need to be there in cpython-source-deps for windows ARM64

2019-02-06 Thread Paul Monson
Change by Paul Monson : -- nosy: +Paul Monson ___ Python tracker <https://bugs.python.org/issue35740> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35705] libffi support is not there for windows on ARM64

2019-02-06 Thread Paul Monson
Change by Paul Monson : -- nosy: +Paul Monson ___ Python tracker <https://bugs.python.org/issue35705> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35926] Need openssl 1.1.1 support on Windows for ARM and ARM64

2019-02-06 Thread Paul Monson
New submission from Paul Monson : Need code and test changes to match https://bugs.python.org/issue35740 -- assignee: christian.heimes components: SSL, Windows messages: 334998 nosy: Paul Monson, christian.heimes, paul.moore, steve.dower, tim.golden, zach.ware priority: normal

[issue35947] Update libffi_msvc to current version of libffi

2019-02-08 Thread Paul Monson
New submission from Paul Monson : libffi needs to be updated to the current version for Windows builds to make it easier to add ARM support -- components: Windows, ctypes messages: 335115 nosy: Paul Monson, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity

[issue35948] update version of libffi in cpython-sources-dep

2019-02-08 Thread Paul Monson
New submission from Paul Monson : libffi needs to be updated to the current version for Windows builds to make it easier to add ARM support -- components: Windows, ctypes messages: 335116 nosy: Paul Monson, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity

[issue35947] Update libffi_msvc to current version of libffi

2019-02-08 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +11803 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35947> ___ ___ Py

[issue35947] Update libffi_msvc to current version of libffi

2019-02-08 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch, patch, patch pull_requests: +11803, 11804, 11806 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35947] Update libffi_msvc to current version of libffi

2019-02-08 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch, patch, patch, patch pull_requests: +11803, 11804, 11805, 11806 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35947] Update libffi_msvc to current version of libffi

2019-02-08 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch, patch pull_requests: +11803, 11804 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35976] PCBuild file changes for arm32 should be separated from code changes for review

2019-02-11 Thread Paul Monson
Change by Paul Monson : -- components: Build, Windows nosy: Paul Monson, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: PCBuild file changes for arm32 should be separated from code changes for review type: enhancement versions

[issue35976] PCBuild file changes for arm32 should be separated from code changes for review

2019-02-11 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +11855 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35976> ___ ___ Py

[issue36071] Add support for Windows ARM32 in ctypes/libffi

2019-02-21 Thread Paul Monson
Change by Paul Monson : -- components: Windows, ctypes nosy: Paul Monson, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: Add support for Windows ARM32 in ctypes/libffi versions: Python 3.8

[issue36071] Add support for Windows ARM32 in ctypes/libffi

2019-02-26 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +12084 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36071> ___ ___ Py

[issue36509] Add iot layout for windows iot containers

2019-04-02 Thread Paul Monson
New submission from Paul Monson : The layout should not contain tcl/tk, tkinter, distutils since ARM is cross-compiled and these features will not be useful on target ARM devices. -- components: Build, Windows messages: 339352 nosy: Paul Monson, paul.moore, steve.dower, tim.golden

[issue36509] Add iot layout for windows iot containers

2019-04-02 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +12591 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36509> ___ ___ Py

[issue33608] Add a cross-interpreter-safe mechanism to indicate that an object may be destroyed.

2019-04-02 Thread Paul Monson
Change by Paul Monson : -- pull_requests: +12593 ___ Python tracker <https://bugs.python.org/issue33608> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36511] Add Windows ARM32 buildbot

2019-04-02 Thread Paul Monson
New submission from Paul Monson : Zachary Ware suggested I create an issue to discuss this: I've started a worker using the worker name monson-win-arm32 and the password provided. I think it is waiting for a change, there were no errors, but it didn't print anything. Also, I

[issue36511] Add Windows ARM32 buildbot

2019-04-02 Thread Paul Monson
Change by Paul Monson : -- nosy: +vstinner ___ Python tracker <https://bugs.python.org/issue36511> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36513] Add support for building arm32 nuget package

2019-04-02 Thread Paul Monson
Change by Paul Monson : -- components: Build, Windows nosy: Paul Monson, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: open title: Add support for building arm32 nuget package type: enhancement versions: Python 3.8

[issue36513] Add support for building arm32 nuget package

2019-04-02 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +12597 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36513> ___ ___ Py

[issue36638] typeperf.exe is not in all skus of Windows

2019-04-15 Thread Paul Monson
New submission from Paul Monson : typeperf.exe is not present on small editions of windows like Windows IoT Core or nanoserver This causes WindowsLoadTracker to throw an exception during test initialization. -- components: Tests messages: 340309 nosy: Paul Monson priority: normal

[issue36638] typeperf.exe is not in all skus of Windows

2019-04-15 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +12774 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36638> ___ ___ Py

[issue36638] typeperf.exe is not in all skus of Windows SKUs

2019-04-15 Thread Paul Monson
Change by Paul Monson : -- title: typeperf.exe is not in all skus of Windows -> typeperf.exe is not in all skus of Windows SKUs ___ Python tracker <https://bugs.python.org/issu

[issue36511] Add Windows ARM32 buildbot

2019-04-22 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +12843 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36511> ___ ___ Py

[issue36778] test_site.StartupImportTests.test_startup_imports fails if default code page is not cp1252

2019-05-02 Thread Paul Monson
New submission from Paul Monson : Windows desktop skus have a default ANSI codepage (returned by GetACP()) of 1252 (Western European). Windows IoT Core and Windows Nano Server have a default codepage of 65001 (UTF-8). This causes test_site.StartupImportTests.test_startup_imports to fail on

[issue36778] test_site.StartupImportTests.test_startup_imports fails if default code page is not cp1252

2019-05-02 Thread Paul Monson
Change by Paul Monson : -- keywords: +patch pull_requests: +12986 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36778> ___ ___ Py

[issue36779] strptime returns empty string on Windows if default codepage is a Unicode codepage

2019-05-02 Thread Paul Monson
New submission from Paul Monson : Need to work around a CRT bug in the use of _tzset() + _tzname[] Calling setlocale(LC_CTYPE, "") on a system where GetACP() returns CP_UTF8 results in empty strings in _tzname[]. This causes time.tzname to be an empty string. I have reported the

[issue36779] time.tzname returns empty string on Windows if default codepage is a Unicode codepage

2019-05-02 Thread Paul Monson
Change by Paul Monson : -- title: strptime returns empty string on Windows if default codepage is a Unicode codepage -> time.tzname returns empty string on Windows if default codepage is a Unicode codepage ___ Python tracker <

[issue36778] test_site.StartupImportTests.test_startup_imports fails if default code page is not cp1252

2019-05-02 Thread Paul Monson
Change by Paul Monson : -- pull_requests: +12988 ___ Python tracker <https://bugs.python.org/issue36778> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36778] test_site.StartupImportTests.test_startup_imports fails if default code page is not cp1252

2019-05-02 Thread Paul Monson
Paul Monson added the comment: == FAIL: test_startup_imports (test.test_site.StartupImportTests) -- Traceback (most recent call last): File "c:\d

[issue36509] Add iot layout for windows iot containers

2019-05-03 Thread Paul Monson
Change by Paul Monson : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue36509> ___ ___ Pyth

[issue35947] Update libffi_msvc to current version of libffi

2019-05-03 Thread Paul Monson
Change by Paul Monson : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue35947> ___ ___ Pyth

[issue36778] test_site.StartupImportTests.test_startup_imports fails if default code page is cp65001

2019-05-06 Thread Paul Monson
Change by Paul Monson : -- title: test_site.StartupImportTests.test_startup_imports fails if default code page is not cp1252 -> test_site.StartupImportTests.test_startup_imports fails if default code page is cp65001 ___ Python tracker <

[issue36778] test_site.StartupImportTests.test_startup_imports fails if default code page is cp65001

2019-05-06 Thread Paul Monson
Paul Monson added the comment: > Okay. The test verifies work done to minimize interpreter startup time, but > probably the relative cost of importing functools (and thus collections et > al) isn't significant compared to the overall cost of spawning a process in a >

[issue36778] test_site.StartupImportTests.test_startup_imports fails if default code page is cp65001

2019-05-08 Thread Paul Monson
Paul Monson added the comment: cp65001 is the default codepage on Windows IoT Core and Windows NanoServer. There is also an option in control panel in Windows desktop 1809 (version 17763) and greater which changes the default codepage to cp65001. 1. Run control.exe 2. Click Clock and

  1   2   >