[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-04 Thread Anthony Sottile
Change by Anthony Sottile : -- nosy: -Anthony Sottile ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-04 Thread Ned Deily
Ned Deily added the comment: New changeset a0c700480b52dffab830d52e9c4eba15d4b57a89 by Ned Deily in branch 'main': bpo-45847: Adapt macOS installer build to use new tkinter configure vars (GH-32328) https://github.com/python/cpython/commit/a0c700480b52dffab830d52e9c4eba15d4b57a89

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-04 Thread Ned Deily
Change by Ned Deily : -- pull_requests: +30387 pull_request: https://github.com/python/cpython/pull/32328 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-04 Thread Ned Deily
Ned Deily added the comment: New changeset 5a7506de7374c10e6eb9ae5a232cc88d4d588450 by Oleg Iarygin in branch 'main': Fix "Contributed ... in bpo-bpo-45847" (GH-32299) https://github.com/python/cpython/commit/5a7506de7374c10e6eb9ae5a232cc88d4d588450 -- nosy: +ned.deily

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-04 Thread Oleg Iarygin
Change by Oleg Iarygin : -- pull_requests: +30361 pull_request: https://github.com/python/cpython/pull/32299 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-04 Thread Oleg Iarygin
Change by Oleg Iarygin : -- pull_requests: -30358 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-04 Thread Oleg Iarygin
Change by Oleg Iarygin : -- nosy: +arhadthedev nosy_count: 5.0 -> 6.0 pull_requests: +30358 pull_request: https://github.com/python/cpython/pull/32299 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-02 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Anthony: you should be able to build the _tkinter by manually specifying the compiler and linker flags using the `TCLTK_CFLAGS` and `TCLTK_LIBS` environment variables. AFAICS, the flags provided by pkgconfig in Ubuntu 20.04 should work well in 18.04

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-02 Thread Christian Heimes
Christian Heimes added the comment: PS: Check out ./configure --help -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-02 Thread Christian Heimes
Christian Heimes added the comment: As I said already, we require a pkg-config file for TCL/TK detection. It turned out to be too painful and too complicated to implement manual TCL/TK detection in configure.ac. Erlend and I tried and eventually gave up. If your platform does not provide

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-02 Thread Anthony Sottile
Anthony Sottile added the comment: I could, but it's very unlikely to get fixed given I believe 18.04 is in security-only fixes and backporting a pkg-config file seems unlikely this worked two days ago before this patch -- ___ Python tracker

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-02 Thread Christian Heimes
Christian Heimes added the comment: Could you please open a distro bug with Ubuntu and report the issue? We require a pkg-config file for TCL/TK. -- ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-02 Thread Anthony Sottile
Anthony Sottile added the comment: the `tk-dev` package on ubuntu bionic does not ship with a `pkg-config` file for tk so it does not build properly there: ``` root@f0dd06a3e87c:/cpython# dpkg -L tk8.6-dev | grep pc root@f0dd06a3e87c:/cpython# ``` (a note: bionic reaches end of life in

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-02 Thread Christian Heimes
Christian Heimes added the comment: Please attach your config.log file. Did configure tell you that you are missing pkg-config? -- ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-02 Thread Anthony Sottile
Anthony Sottile added the comment: this appears to break the tkinter extension for ubuntu bionic (18.04) -- I'm not entirely sure on the correct fix here but I get the following from trying to build there: 2022-04-02T15:52:08.0910452Z Python build finished successfully!

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-04-01 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +30301 pull_request: https://github.com/python/cpython/pull/32229 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-03-31 Thread miss-islington
miss-islington added the comment: New changeset b36d222110d0d6d84dc8e973ca87d976c2423f5d by Erlend Egeberg Aasland in branch 'main': bpo-45847: Port _tkinter to PY_STDLIB_MOD (GH-31698) https://github.com/python/cpython/commit/b36d222110d0d6d84dc8e973ca87d976c2423f5d --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-03-07 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Solved: Ubuntu is fine, we just need to treat LIBS and LDFLAGS with care in configure.ac. GH-31698 is updated with a fix. -- ___ Python tracker

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-03-07 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: FTR: $ strings /lib/x86_64-linux-gnu/libtcl8.6.so | grep -E "\" Tcl_Init $ strings /lib/x86_64-linux-gnu/libtk8.6.so | grep -E "\" Tk_Init -- ___ Python tracker

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-03-07 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: > GH-31698 sort'a works given that pkg-config provides us with correct info. > Sadly it doesn't for Ubuntu [...] Hm, looking more closely at Ubuntu (20.4), I see that the pkg-config files is actually correct. I'll have to debug this further; perhaps

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-03-07 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: FYI, tested GH-31698 on Debian 10.3, and it works swell there. -- ___ Python tracker ___ ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-03-07 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Regarding _tkinter (Tcl/Tk): Based on discussion on Discourse (https://discuss.python.org/t/simplifying-tcl-tk-detection/14066), my current plan is to just use pkg-config, and drop the rest of the autodetect hackery. GH-31698 sort'a works given that

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2022-03-05 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +29818 pull_request: https://github.com/python/cpython/pull/31698 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-08 Thread Christian Heimes
Christian Heimes added the comment: New changeset 0461c68cdff1392a5299ebd8c37ddce0b60dd6cc by Christian Heimes in branch 'main': bpo-45847: Don't override user overrides for CFLAGS/LIBS (GH-29967) https://github.com/python/cpython/commit/0461c68cdff1392a5299ebd8c37ddce0b60dd6cc --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-07 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- priority: release blocker -> ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-07 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Quoting msg407949: > [...] We should do something like > > ZLIB_CFLAGS=${ZLIB_CFLAGS:-""} > ZLIB_LIBS=${ZLIB_LIBS:-"-lz"} > > for all env vars. I think we should use ${VAR-default} instead of ${VAR:-default}; we only want to override if the variable

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-07 Thread Christian Heimes
Christian Heimes added the comment: New changeset 91b59a3fcdcb93d74bb89cce536f11d2990f655d by Christian Heimes in branch 'main': bpo-45847: Revert Port _ctypes partly to PY_STDLIB_MOD (GH-29747) (GH-29969) https://github.com/python/cpython/commit/91b59a3fcdcb93d74bb89cce536f11d2990f655d

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-07 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +28194 pull_request: https://github.com/python/cpython/pull/29969 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-07 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I may need to revert this commit to unblock the release if no one can take a look today -- ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-07 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: After PR29747, some buildbots are failing: https://buildbot.python.org/all/#/builders/58/builds/1217 for example: ``` 0:35:41 load avg: 3.70 Re-running failed tests in verbose mode 0:35:41 load avg: 3.70 Re-running test_code in verbose mode

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-07 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +28192 pull_request: https://github.com/python/cpython/pull/29967 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-07 Thread Christian Heimes
Christian Heimes added the comment: I just noticed that the PKG_CHECK_MODULES() fallbacks override the PKG_CONFIG environment variables. We should do something like ZLIB_CFLAGS=${ZLIB_CFLAGS:-""} ZLIB_LIBS=${ZLIB_LIBS:-"-lz"} for all env vars. I prefer the syntax over

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-06 Thread Christian Heimes
Christian Heimes added the comment: New changeset fc012d801202a9ea139df143b934778060d51a60 by Christian Heimes in branch 'main': bpo-45847: Fix uuid detection on macOS (GH-29946) https://github.com/python/cpython/commit/fc012d801202a9ea139df143b934778060d51a60 --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-06 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +28171 pull_request: https://github.com/python/cpython/pull/29946 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-04 Thread Christian Heimes
Christian Heimes added the comment: New changeset 64be8d369b7e3878078dbef466804ae8be49c1cf by Christian Heimes in branch 'main': bpo-45847: Update whatsnew and add place holder entries for missing extensions (GH-29914)

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-04 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +28139 pull_request: https://github.com/python/cpython/pull/29914 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-12-04 Thread Christian Heimes
Christian Heimes added the comment: New changeset 4045392e0e3446362841b3336497cb6eeccfcd23 by Christian Heimes in branch 'main': bpo-45847: Port _ctypes partly to PY_STDLIB_MOD (GH-29747) https://github.com/python/cpython/commit/4045392e0e3446362841b3336497cb6eeccfcd23 --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-29 Thread Christian Heimes
Christian Heimes added the comment: New changeset b394af13f69c1a2ac0e7d32dabf6d86443606ab2 by Christian Heimes in branch 'main': bpo-45847: PY_STDLIB_MOD_SIMPLE now checks py_stdlib_not_available (GH-29844) https://github.com/python/cpython/commit/b394af13f69c1a2ac0e7d32dabf6d86443606ab2

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-29 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +28073 pull_request: https://github.com/python/cpython/pull/29844 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-29 Thread Christian Heimes
Christian Heimes added the comment: New changeset f7a62f24053c82cf38c3db5848d9ff014470fa40 by Erlend Egeberg Aasland in branch 'main': bpo-45847: Make socket module conditional (GH-29769) https://github.com/python/cpython/commit/f7a62f24053c82cf38c3db5848d9ff014470fa40 --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-29 Thread Christian Heimes
Christian Heimes added the comment: New changeset 4dc198dedd66e3247aa934fb91c9a158c3eea15a by Christian Heimes in branch 'main': bpo-45847: Fix _multiprocessing on platforms without sem_open (GH-29833) https://github.com/python/cpython/commit/4dc198dedd66e3247aa934fb91c9a158c3eea15a

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-29 Thread Christian Heimes
Christian Heimes added the comment: GH-29768 broke builds on platforms without sem_open (e.g. wasm). GH-29833 fixes the issue. emcc -Wsign-compare -g -O0 -Wall-std=c99 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-29 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +28064 pull_request: https://github.com/python/cpython/pull/29833 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-28 Thread Christian Heimes
Christian Heimes added the comment: New changeset aaf4cfd5774d23ca48ff304ace1f64426201 by Erlend Egeberg Aasland in branch 'main': bpo-45847: Port _multiprocessing to PY_STDLIB_MOD (GH-29768) https://github.com/python/cpython/commit/aaf4cfd5774d23ca48ff304ace1f64426201 --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-26 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Some info regarding _multiprocessing: Modules/_multiprocessing/semaphore.c is currently conditionally included in setup.py (HAVE_SEM_OPEN && !POSIX_SEMAPHORES_NOT_ENABLED), but always included in Modules/Setup. Here's some historical bpo's (more or

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-24 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +28006 pull_request: https://github.com/python/cpython/pull/29769 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-24 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +28005 pull_request: https://github.com/python/cpython/pull/29768 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-24 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27984 pull_request: https://github.com/python/cpython/pull/29747 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-24 Thread Christian Heimes
Christian Heimes added the comment: New changeset 64c3807da93fc3e0c15bc376f220b2d24551023e by Christian Heimes in branch 'main': bpo-45847: Fix _crypt detection on Ubuntu (GH-29743) https://github.com/python/cpython/commit/64c3807da93fc3e0c15bc376f220b2d24551023e --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-24 Thread Christian Heimes
Christian Heimes added the comment: New changeset 8af6481f6b7d43646c47d8fa6cc6d5eb465e2b0f by Christian Heimes in branch 'main': bpo-45847: Port _uuid to PY_STDLIB_MOD (GH-29741) https://github.com/python/cpython/commit/8af6481f6b7d43646c47d8fa6cc6d5eb465e2b0f --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-24 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27980 pull_request: https://github.com/python/cpython/pull/29743 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-24 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27979 pull_request: https://github.com/python/cpython/pull/29741 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-23 Thread Christian Heimes
Christian Heimes added the comment: New changeset 324527012fa1078428a6207918640cf860e28c81 by Erlend Egeberg Aasland in branch 'main': bpo-45847: Port _posixshmem to PY_STDLIB_MOD (GH-29738) https://github.com/python/cpython/commit/324527012fa1078428a6207918640cf860e28c81 --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-23 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +27976 pull_request: https://github.com/python/cpython/pull/29738 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-23 Thread Christian Heimes
Christian Heimes added the comment: New changeset 9cf5646bb465b7d3d68bfe6d4711feb43d565051 by Christian Heimes in branch 'main': bpo-45847: Port _gdbm to PY_STDLIB_MOD (GH-29720) https://github.com/python/cpython/commit/9cf5646bb465b7d3d68bfe6d4711feb43d565051 --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-23 Thread Christian Heimes
Christian Heimes added the comment: New changeset b9e9292d75fdea621e05e39b8629e6935d282d0d by Christian Heimes in branch 'main': bpo-45847: Port _ssl and _hashlib to PY_STDLIB_MOD (GH-29727) https://github.com/python/cpython/commit/b9e9292d75fdea621e05e39b8629e6935d282d0d --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-23 Thread Christian Heimes
Christian Heimes added the comment: New changeset 095bc8f0d6845dded8f67fbc6eca20dfac8b3929 by Christian Heimes in branch 'main': bpo-45847: Port _crypt to PY_STDLIB_MOD (GH-29725) https://github.com/python/cpython/commit/095bc8f0d6845dded8f67fbc6eca20dfac8b3929 --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-23 Thread Christian Heimes
Christian Heimes added the comment: We are down to 9 missing modules: readline _curses _curses_panel _dbm _ctypes _multiprocessing _posixshmem _tkinter _uuid -- ___ Python tracker

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-23 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27964 pull_request: https://github.com/python/cpython/pull/29727 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-23 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27962 pull_request: https://github.com/python/cpython/pull/29725 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-23 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27956 pull_request: https://github.com/python/cpython/pull/29720 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Christian Heimes added the comment: New changeset d82f2caf942fa8b94e797a2f116ee54ec303c2df by Erlend Egeberg Aasland in branch 'main': bpo-45847: Port _socket to PY_STDLIB_MOD (GH-29713) https://github.com/python/cpython/commit/d82f2caf942fa8b94e797a2f116ee54ec303c2df --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Christian Heimes added the comment: New changeset 758a23d1c4db97b578bc16e0ea110074d65c4c52 by Erlend Egeberg Aasland in branch 'main': bpo-45847: Fix xxlimited and xxlimited_35 build conditions (GH-29715) https://github.com/python/cpython/commit/758a23d1c4db97b578bc16e0ea110074d65c4c52

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +27951 pull_request: https://github.com/python/cpython/pull/29715 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Christian Heimes added the comment: New changeset 2dc7d3dda61e7ce07721f46b14c706fbc879dfd6 by Erlend Egeberg Aasland in branch 'main': bpo-45847: Port xxlimited and xxlimited_35 to PY_STDLIB_MOD (GH-29707) https://github.com/python/cpython/commit/2dc7d3dda61e7ce07721f46b14c706fbc879dfd6

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +27948 pull_request: https://github.com/python/cpython/pull/29713 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Christian Heimes added the comment: New changeset 0e1c2f3ef84572b79fa7d8498a69bc5a56ff0d8d by Christian Heimes in branch 'main': bpo-45847: port _struct to PY_STDLIB_MOD (GH-29706) https://github.com/python/cpython/commit/0e1c2f3ef84572b79fa7d8498a69bc5a56ff0d8d --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +27943 pull_request: https://github.com/python/cpython/pull/29707 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Christian Heimes added the comment: _crypt is powered by pkgconf libcrypt or libxcrypt on Linux. On my system and on Debian, libcrypt.pc is a symlink to libxcrypt.pc. Linux has crypt() and/or crypt_r() in . On FreeBSD crypt_r() is in and libc. _uuid needs similar special handling. It's ,

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread miss-islington
miss-islington added the comment: New changeset eee683cbde499e62fc90ad366f7c45625fe92150 by Erlend Egeberg Aasland in branch 'main': bpo-45847: Port audioop, _csv, and _posixsubprocess to PY_STDLIB_MOD_SIMPLE (GH-29705)

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: _socket coming up... -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Christian Heimes added the comment: Not converted yet: readline _curses _curses_panel _crypt _socket _ssl _hashlib _dbm _gdbm _ctypes _multiprocessing _posixshmem _tkinter _uuid xxlimited xxlimited_35 -- ___ Python tracker

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Christian Heimes added the comment: New changeset c6dec7e27a82cba33539d07ef8d7346e0a232421 by Christian Heimes in branch 'main': bpo-45847: Port nis module to PY_STDLIB_MOD (GH-29699) https://github.com/python/cpython/commit/c6dec7e27a82cba33539d07ef8d7346e0a232421 --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27942 pull_request: https://github.com/python/cpython/pull/29706 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +27941 pull_request: https://github.com/python/cpython/pull/29705 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Christian Heimes added the comment: New changeset d9cedabeba0d87799f99c0717e81743a1c2d34ce by Christian Heimes in branch 'main': bpo-45847: Port compression libs to PY_STDLIB_MOD (GH-29702) https://github.com/python/cpython/commit/d9cedabeba0d87799f99c0717e81743a1c2d34ce --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Christian Heimes added the comment: New changeset b451673f93465a27ee61e408190ee61cb9dbd5b6 by Erlend Egeberg Aasland in branch 'main': bpo-45847: Port mmap, select, and _xxsubinterpreters to Py_STDLIB_MOD (GH-29703)

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +27939 pull_request: https://github.com/python/cpython/pull/29703 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Christian Heimes added the comment: New changeset 5b946cadaa1175a5caae98bd2d309840bea52a58 by Erlend Egeberg Aasland in branch 'main': bpo-45847: Port fcntl to Py_STDLIB_MOD (GH-29696) https://github.com/python/cpython/commit/5b946cadaa1175a5caae98bd2d309840bea52a58 --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27938 pull_request: https://github.com/python/cpython/pull/29702 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Christian Heimes added the comment: New changeset 29699a2a2aa2f0d6e790beeae55967fc2f35fe50 by Christian Heimes in branch 'main': bpo-45847: Various PY_STDLIB_MOD cleanups (GH-29697) https://github.com/python/cpython/commit/29699a2a2aa2f0d6e790beeae55967fc2f35fe50 --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27935 pull_request: https://github.com/python/cpython/pull/29699 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27933 pull_request: https://github.com/python/cpython/pull/29697 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +27932 pull_request: https://github.com/python/cpython/pull/29696 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread miss-islington
miss-islington added the comment: New changeset 39f7d2ff01eb03f1dd87a019472a32cde6250e84 by Erlend Egeberg Aasland in branch 'main': bpo-45847: Port _lfprof, _opcode, _asyncio, _queue, _statistics, and _typing to PY_STDLIB_MOD_SIMPLE (GH-29690)

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: 45 down, 35 to go. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread miss-islington
miss-islington added the comment: New changeset 718cee08cc082ece590f5a012253a405422da03d by Erlend Egeberg Aasland in branch 'main': bpo-45847: Port _bisect, _heapq, _json, _pickle, _random, and _zoneinfo to PY_STDLIB_MOD_SIMPLE (GH-29689)

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-22 Thread Christian Heimes
Christian Heimes added the comment: New changeset 133c65a870e8bdcce7cd6a2bc6bd0cefbb2fa9f3 by Erlend Egeberg Aasland in branch 'main': bpo-45847: Port array, _contextvars, math, and cmath to PY_STDLIB_MOD_SIMPLE (GH-29688)

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-21 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +27928 pull_request: https://github.com/python/cpython/pull/29690 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-21 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +27927 pull_request: https://github.com/python/cpython/pull/29689 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-21 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- pull_requests: +27926 pull_request: https://github.com/python/cpython/pull/29688 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-21 Thread Christian Heimes
Christian Heimes added the comment: New changeset 2afa1a12669e1812a9fe8130c8f60052c4ad8bf8 by Christian Heimes in branch 'main': bpo-45847: Port codecs and unicodedata to PY_STDLIB_MOD (GH-29685) https://github.com/python/cpython/commit/2afa1a12669e1812a9fe8130c8f60052c4ad8bf8 --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-21 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27924 pull_request: https://github.com/python/cpython/pull/29685 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-21 Thread Christian Heimes
Christian Heimes added the comment: New changeset f201d261cf53365b5769a434ca2bb21a892bd23f by Christian Heimes in branch 'main': bpo-45847: Port grp, spwd, termios, resource, syslog to PY_STDLIB_MOD (GH-29668) https://github.com/python/cpython/commit/f201d261cf53365b5769a434ca2bb21a892bd23f

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-20 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27909 pull_request: https://github.com/python/cpython/pull/29668 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-20 Thread Christian Heimes
Christian Heimes added the comment: New changeset f36c69a26ee880acf62a5ae8c5da49312e84c66d by Christian Heimes in branch 'main': bpo-45847: Port test modules to PY_STDLIB_MOD (GH-29660) https://github.com/python/cpython/commit/f36c69a26ee880acf62a5ae8c5da49312e84c66d --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-20 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27902 pull_request: https://github.com/python/cpython/pull/29660 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-20 Thread Christian Heimes
Christian Heimes added the comment: New changeset 5596909eac4abdc9927c2e7751bea34fbcfdc624 by Christian Heimes in branch 'main': bpo-45847: Port _scproxy to PY_STDLIB_MOD (GH-29644) https://github.com/python/cpython/commit/5596909eac4abdc9927c2e7751bea34fbcfdc624 --

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-19 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +27877 pull_request: https://github.com/python/cpython/pull/29644 ___ Python tracker ___

[issue45847] Port module setup to PY_STDLIB_MOD() macro and addext()

2021-11-19 Thread Christian Heimes
Christian Heimes added the comment: New changeset c8c21bdd199f9feb75fc6cdb398a686dc133b99f by Christian Heimes in branch 'main': bpo-45847: Port builtin hashlib extensions to PY_STDLIB_MOD (GH-29642) https://github.com/python/cpython/commit/c8c21bdd199f9feb75fc6cdb398a686dc133b99f

  1   2   >