[issue1528154] New sequences for Unicode groups and block ranges needed

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue1528154] New sequences for Unicode groups and block ranges needed

2014-06-27 Thread Ezio Melotti
Ezio Melotti added the comment: This seems to be the only one currently. Other issues might have closed in favor of #2636 though. -- ___ Python tracker ___

[issue1528154] New sequences for Unicode groups and block ranges needed

2014-06-26 Thread Mark Lawrence
Mark Lawrence added the comment: Is there an easy way to find out how many other issues have #2636 as a dependency? -- nosy: +BreamoreBoy ___ Python tracker ___ __

[issue1528154] New sequences for Unicode groups and block ranges needed

2013-04-01 Thread Ezio Melotti
Ezio Melotti added the comment: We should really just include "regex" in 3.4. -- nosy: +ezio.melotti ___ Python tracker ___ ___ Pyth

[issue1528154] New sequences for Unicode groups and block ranges needed

2013-04-01 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am trying to decide if this issue still serves a purpose. It seems to be a request to add something to the existing re module. Fredrik semi-rejected the idea without a (micro)-pep. A python-ideas discussion is now another option. Matthew's regex implementati

[issue1528154] New sequences for Unicode groups and block ranges needed

2011-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Is there a practical issue left here? Mathew says his regex module does as requested, but adding that to the stdlib is a separate issue. Martin would like an implementation of Unicode TR18, but that is also another issue. -- nosy: +terry.reedy version

[issue1528154] New sequences for Unicode groups and block ranges needed

2010-12-07 Thread admin
admin merkte an: Logged In: YES user_id=38388 Could you make your request a little more specific ? We already have catregories in the re module, so adding a few more would be possible (patches are welcome !). However, we do need to know why you need them and whether there are other RE impleme

[issue1528154] New sequences for Unicode groups and block ranges needed

2010-12-07 Thread admin
admin merkte an: note that posix uses a special set syntax, [:name:], for this purpose: [:alnum:] [:cntrl:] [:lower:] [:space:] [:alpha:] [:digit:] [:print:] [:upper:] [:blank:] [:graph:] [:punct:] [:xdigit:] adding a new character escape will probably break more existing ex

[issue1528154] New sequences for Unicode groups and block ranges needed

2010-12-07 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- Removed message: http://bugs.python.org/msg54865 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue1528154] New sequences for Unicode groups and block ranges needed

2010-02-25 Thread Matthew Barnett
Matthew Barnett added the comment: \p{name} is supported for Unicode properties, scripts and blocks in my regex module (see issue #2636). It also supports the POSIX set syntax, although I'm not sure that we really need to have 2 ways of doing it, eg \p{Alpha} and [[:Alpha:]]. -- ___

[issue1528154] New sequences for Unicode groups and block ranges needed

2009-03-30 Thread Matthew Barnett
Matthew Barnett added the comment: I implemented \p, \P and [:...:] for the simple categories (eg "Lu" and "upper", but not "IsGreek") in the work I did for issue #2636. -- nosy: +mrabarnett ___ Python tracker _

[issue1528154] New sequences for Unicode groups and block ranges needed

2009-03-30 Thread Martin v. Löwis
Martin v. Löwis added the comment: No progress has been made. I still maintain that TR18 should be implemented. I'm not so sure whether the POSIX special groups should be provided. My understanding is that they originally were meant to integrate with the locale support, and change with loca

[issue1528154] New sequences for Unicode groups and block ranges needed

2009-03-29 Thread Daniel Diniz
Daniel Diniz added the comment: Has this been addressed for 2.6/3.0? Do the LOCALE and UNICODE constants cover this? -- components: +Unicode nosy: +ajaksu2 stage: -> test needed versions: +Python 2.7, Python 3.1 ___ Python tracker