[issue42111] Make the xxlimited module an example of best extension module practices

2020-12-15 Thread Petr Viktorin
Change by Petr Viktorin : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue42111] Make the xxlimited module an example of best extension module practices

2020-12-08 Thread miss-islington
miss-islington added the comment: New changeset c168b5078f88874b9acd993ac886f82269c780dd by Petr Viktorin in branch 'master': bpo-42111: Make the xxlimited module an example of best extension module practices (GH-23226)

[issue42111] Make the xxlimited module an example of best extension module practices

2020-11-10 Thread Petr Viktorin
Change by Petr Viktorin : -- keywords: +patch pull_requests: +22123 stage: -> patch review pull_request: https://github.com/python/cpython/pull/23226 ___ Python tracker ___

[issue42111] Make the xxlimited module an example of best extension module practices

2020-10-29 Thread hai shi
Change by hai shi : -- nosy: +shihai1991 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42111] Make the xxlimited module an example of best extension module practices

2020-10-27 Thread Petr Viktorin
Change by Petr Viktorin : -- assignee: -> petr.viktorin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42111] Make the xxlimited module an example of best extension module practices

2020-10-27 Thread Petr Viktorin
Petr Viktorin added the comment: Thanks! That's my plan, but when I added tests I realized I need to pt in some general improvements to the stable ABI first. -- ___ Python tracker

[issue42111] Make the xxlimited module an example of best extension module practices

2020-10-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I would interpret the limited pydev response (1 person, whose concern you incorporated into your post) to indicate absence of opposition. Given that 384 was written by someone inactive for years, I say go ahead and submit a PR for review by any interested

[issue42111] Make the xxlimited module an example of best extension module practices

2020-10-22 Thread Dong-hee Na
Dong-hee Na added the comment: I am +1 on this idea. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42111] Make the xxlimited module an example of best extension module practices

2020-10-22 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42111] Make the xxlimited module an example of best extension module practices

2020-10-21 Thread Petr Viktorin
New submission from Petr Viktorin : The "xxlimited" module (Modules/xxlimited.c) was added as part of PEP 384 (Defining a Stable ABI), and is undocumented. As far as I can tell, it was added partly to test the stable ABI, and partly as an example of how to write a module (like "xx" from