[issue35549] Add globbing to unicodedata.lookup

2018-12-21 Thread Roman Inflianskas
Roman Inflianskas added the comment: I like your proposal with globbing, steven.daprano. I updated the title. -- title: Add partial_match: bool = False argument to unicodedata.lookup -> Add globbing to unicodedata.lookup ___ Python trac

[issue35549] Add partial_match: bool = False argument to unicodedata.lookup

2018-12-21 Thread Roman Inflianskas
New submission from Roman Inflianskas : I propose to add partial_match: bool = False argument to unicodedata.lookup so that the programmer could search Unicode symbols using partial_names. -- components: Unicode messages: 332283 nosy: ezio.melotti, rominf, vstinner priority: normal

[issue35108] inspect.getmembers passes exceptions from object's properties through

2018-10-30 Thread Roman Inflianskas
New submission from Roman Inflianskas : I use inspect.getmembers for getting members of splinter.webdriver.BaseWebDriver. The problem is that it has a property status_code raises NotImplementedError: https://github.com/cobrateam/splinter/blob/master/splinter/driver/webdriver/__init__.py#L191

[issue21405] Allow using symbols from Unicode block Superscripts and Subscripts in identifiers

2014-05-04 Thread Roman Inflianskas
Roman Inflianskas added the comment: See later discussion there: https://mail.python.org/pipermail/python-ideas/2014-May/027767.html Because of https://mail.python.org/pipermail/python-ideas/2014-May/027789.html I'm closing this issue. -- resolution: - rejected status: open - closed

[issue21405] Allow using symbols from Unicode block Superscripts and Subscripts in identifiers

2014-05-01 Thread Roman Inflianskas
New submission from Roman Inflianskas: It's really useful that python 3 allows me to use some Unicode symbols (as specified in https://docs.python.org/3.4/reference/lexical_analysis.html#identifiers), especially Greek symbols for mathematical programs. But when I write mathematical program

[issue21405] Allow using symbols from Unicode block Superscripts and Subscripts in identifiers

2014-05-01 Thread Roman Inflianskas
Roman Inflianskas added the comment: I'm sorry, I didn't now that bugtracker is not for features discussing. I'll wrote the letter to the python-ideas: https://groups.google.com/forum/#!topic/python-ideas/yjR7j9TSFeE -- ___ Python tracker rep

[issue19776] Provide expanduser() on Path objects

2014-04-26 Thread Roman Inflianskas
Roman Inflianskas added the comment: I think that `absolute` method should call `expanduser` and `expandvars` (do you plan to include it?) automatically. This should be optional (via default arguments: `expanduser=True, expandvars=True`. -- nosy: +rominf