[Python-Dev] Clarify the compatibility policy of lib2to3.

2017-11-17 Thread Dong-hee Na
-hee Na Chungnam National University | Computer Science & Engineering Tel: +82 010-3353-9127 Email: donghee.n...@gmail.com Linkedin: https://www.linkedin.com/in/dong-hee-na-2b713b49/ Github: https://github.com/corona10 ___ Python-Dev mailing list Py

[Python-Dev] Re: Request to postpone some Python 3.9 incompatible changes to Python 3.10

2020-02-18 Thread Dong-hee Na
ionWarning and ResourceWarning: use the "-X dev" command line > > option or set the PYTHONDEVMODE=1 environment variable. Or you can use > > the PYTHONWARNINGS=default environment variable to see > > DeprecationWarning. > > > > You might e

[Python-Dev] Re: Python 4 FAQ

2020-09-15 Thread Dong-hee Na
Great idea +1 2020년 9월 16일 (수) 오후 1:13, Guido van Rossum 님이 작성: > Good idea. I tweeted pretty much what you wrote. > https://twitter.com/gvanrossum/status/1306082472443084801 > > On Tue, Sep 15, 2020 at 7:58 PM Steven D'Aprano > wrote: > >> There's still a lot of community angst over the

[Python-Dev] Re: Pay for PR review and merging for VxWorks RTOS

2020-08-07 Thread Dong-hee Na
__ > Python-Dev mailing list -- python-dev@python.org > To unsubscribe send an email to python-dev-le...@python.org > https://mail.python.org/mailman3/lists/python-dev.python.org/ > Message archived at >

[Python-Dev] Re: PEP 620: Hide implementation details from the C API

2020-06-22 Thread Dong-hee Na
otating the function with > ``Py_DEPRECATED()``. But making a structure opaque and preventing the > usage of a macro as l-value cannot be deprecated with > ``Py_DEPRECATED()``. > > The important part is coordination and finding a balance between CPython > evolutions and backward comp

[Python-Dev] Add mimetypes.mimesniff

2020-07-22 Thread Dong-hee Na
://mimesniff.spec.whatwg.org/) So I created the issue on the bpo and implemented it. I 'd like to listen to all your opinions :) -- Software Development Engineer at Kakao corp. Tel: +82 10-3353-9127 Email: donghee.n...@gmail.com | denn...@kakaocorp.com Linkedin: https://www.linkedin.com/in/dong-hee-na-2b713b49

[Python-Dev] Re: Remove formatter module

2020-11-24 Thread Dong-hee Na
Thanks everybody I will merge this PR until tomorrow ;) 2020년 11월 24일 (화) 오후 10:08, Stéfane Fermigier 님이 작성: > > > On Tue, Nov 24, 2020 at 12:51 PM Victor Stinner > wrote: > >> >> I never used this module, I don't know what it is. >> > > I've run a quick search on GitHub and the only

[Python-Dev] Remove formatter module

2020-11-23 Thread Dong-hee Na
A few days ago, Terry J. Reedy created the issue about the formatter module. (https://bugs.python.org/issue42299) The issue is mainly about testing code but also discussing the removal of the module. I noticed that the formatter module was deprecated in 3.4 and it was originally scheduled to be

[Python-Dev] Re: PEP 670: Convert macros to functions in the Python C API

2021-10-21 Thread Dong-hee Na
bpo-45490 <https://bugs.python.org/issue45490>`_: > [meta][C API] Avoid C macro pitfalls and usage of static inline > functions (October 2021). > * `What to do with unsafe macros > <https://discuss.python.org/t/what-to-do-wit

[Python-Dev] Re: Increase of Spammy PRs and PR reviews

2022-01-31 Thread Dong-hee Na
If you feel bad impression, sorry about that. The mentee who cc me is under mentoring period. Since tracking all of mentee’s activity is impossible, I requested him to cc me. This was for checking his labeling is valid or not. Warm regards Dong-hee 2022년 2월 1일 (화) 오전 5:35, Lrupert via Python-Dev

[Python-Dev] Re: It's now time to deprecate the stdlib urllib module

2022-02-06 Thread Dong-hee Na
I am not an expert about pip, but it will be not a problem about installing the pip module once CPython removes urllib module from stdlib? Warm regards, Dong-hee 2022년 2월 6일 (일) 오후 11:13, Victor Stinner 님이 작성: > Hi, > > I propose to deprecate the urllib module in Python 3.11. It would emit > a

[Python-Dev] Re: Python no longer leaks memory at exit

2022-01-27 Thread Dong-hee Na
he GC protocol (bpo-40217). > > > == PEPs == > > The work relies on multiple PEPs: > > * PEP 489: Multi-phase extension module initialization > * PEP 573: Module State Access from C Extension Methods > * PEP 630: Isolating Extension Modules > > > == Persons w

[Python-Dev] Re: Discussion about crash tolerance feature for gdbm module

2022-01-18 Thread Dong-hee Na
d API)? > > Do you ask us our opinion on the Python API that you propose? Or if > the whole feature is worth it? > > Victor > > On Tue, Jan 18, 2022 at 2:41 AM Dong-hee Na wrote: > > > > Hi folks, > > From gdbm 1.21, gdbm supports the crash tolerance feature. &

[Python-Dev] Discussion about crash tolerance feature for gdbm module

2022-01-17 Thread Dong-hee Na
Hi folks, >From gdbm 1.21, gdbm supports the crash tolerance feature. see: https://www.gnu.org.ua/software/gdbm/manual/Crash-Tolerance.html I would like to introduce this feature since python standard library is the only gdbm binding library that is available for end-users. And this is also

[Python-Dev] Re: Discussion about crash tolerance feature for gdbm module

2022-01-20 Thread Dong-hee Na
I exchanged a mail for investigating details. Before getting started, please remind the following fact. - The latest snapshot is always valid, even if corruption has not occurred. > Why is a separated script needed? / A single script cannot automatically detect a corrupted database and load the

[Python-Dev] Re: Discussion about crash tolerance feature for gdbm module

2022-01-20 Thread Dong-hee Na
For more readable code: https://gist.github.com/corona10/d4fe0b6367ea6865e37b4369a7d60912 2022년 1월 21일 (금) 오후 12:50, Dong-hee Na 님이 작성: > I exchanged a mail for investigating details. > > Before getting started, please remind the following fact. > - The latest snapshot is always

[Python-Dev] Re: Discussion about crash tolerance feature for gdbm module

2022-01-21 Thread Dong-hee Na
After discussion with Victor by using DM, I decided to provide high-level API instead of low-level APIs. - gdbm.open(filename, snapshots=(foo, bar)) will do everything at once. Regards, Dong-hee 2022년 1월 21일 (금) 오후 12:52, Dong-hee Na 님이 작성: > For more readable code: > https://gist.gith