Re: [Python-Dev] Reorganizing re and curses related code

2017-11-03 Thread Serhiy Storchaka
03.11.17 12:29, Nick Coghlan пише: On 3 November 2017 at 20:01, Serhiy Storchaka wrote: Since virtually all changes in these files at recent years have been made by me, I don't think this will harm other core developers. Are there any objections? Sound fine to me (and you may want to add an

Re: [Python-Dev] Reorganizing re and curses related code

2017-11-03 Thread Nick Coghlan
On 3 November 2017 at 20:01, Serhiy Storchaka wrote: > > Since virtually all changes in these files at recent years have been made by > me, I don't think this will harm other core developers. Are there any > objections? Sound fine to me (and you may want to add an underscore prefix to the sre_*.p

Re: [Python-Dev] Reorganizing re and curses related code

2017-11-03 Thread Antoine Pitrou
Sounds good to me :-) Regards Antoine. On Fri, 3 Nov 2017 12:01:28 +0200 Serhiy Storchaka wrote: > Currently the implementation of re and curses related modules is sparsed > over several files: > > re: > Lib/re.py > Lib/sre_compile.py > Lib/sre_constants.py > Lib/sre_par

[Python-Dev] Reorganizing re and curses related code

2017-11-03 Thread Serhiy Storchaka
Currently the implementation of re and curses related modules is sparsed over several files: re: Lib/re.py Lib/sre_compile.py Lib/sre_constants.py Lib/sre_parse.py _sre: Modules/_sre.c Modules/sre_constants.h Modules/sre.h Modules/sre_lib.h _curses: Include