[issue22808] Typo in asyncio-eventloop.rst, time() link is wrong

2014-11-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8b1d8fcb494b by Berker Peksag in branch '3.4': Issue #22808: Link to the correct time method in BaseEventLoop.call_at(). https://hg.python.org/cpython/rev/8b1d8fcb494b New changeset 98f4bc1332c9 by Berker Peksag in branch 'default': Issue #22808:

[issue22808] Typo in asyncio-eventloop.rst, time() link is wrong

2014-11-07 Thread Berker Peksag
Berker Peksag added the comment: Committed. Thanks for the patch, Mark. -- nosy: +berker.peksag resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22808

[issue22816] spam

2014-11-07 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- title: repor - spam ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22816 ___ ___

[issue20152] Derby #15: Convert 50 sites to Argument Clinic across 9 files

2014-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I found bugs or doubtful code in the fcntl module. They should be fixed before converting to Argument Clinic. -- nosy: +serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20152

[issue22735] Fix various crashes exposed through mro() customization

2014-11-07 Thread Eldar Abusalimov
Eldar Abusalimov added the comment: Thank you for your replies. I don't think forbidding reentrancy is a good idea, and I'm against it for the following reasons. First of all, naive prohibition of type_set_bases within mro() on a class doesn't save from mro() reentrancy: def mro(cls):

[issue9179] Lookback with group references incorrect (two issues?)

2014-11-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset fac649bf2d10 by Serhiy Storchaka in branch '2.7': Issues #814253, #9179: Group references and conditional group references now https://hg.python.org/cpython/rev/fac649bf2d10 New changeset 9fcf4008b626 by Serhiy Storchaka in branch '3.4': Issues

[issue814253] Grouprefs in lookbehind assertions

2014-11-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset fac649bf2d10 by Serhiy Storchaka in branch '2.7': Issues #814253, #9179: Group references and conditional group references now https://hg.python.org/cpython/rev/fac649bf2d10 New changeset 9fcf4008b626 by Serhiy Storchaka in branch '3.4': Issues

[issue20220] TarFile.list() outputs wrong time

2014-11-07 Thread David Edelsohn
David Edelsohn added the comment: Any other ideas for a reliable method to restore the correct timezone after running a test? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20220 ___

[issue814253] Grouprefs in lookbehind assertions

2014-11-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0e2c7d774df3 by Serhiy Storchaka in branch '2.7': Silence the failure of test_pyclbr after adding a property in sre_parse https://hg.python.org/cpython/rev/0e2c7d774df3 New changeset 246c9570a757 by Serhiy Storchaka in branch '3.4': Silence the

[issue18473] some objects pickled by Python 3.x are not unpicklable in Python 2.x because of incorrect REVERSE_IMPORT_MAPPING

2014-11-07 Thread Doug Royal
Doug Royal added the comment: This patch only addresses the proven errors with UserList, UserString, and collections. -- keywords: +patch nosy: +doug.royal Added file: http://bugs.python.org/file37145/fix_issue18473.patch ___ Python tracker

[issue9179] Lookback with group references incorrect (two issues?)

2014-11-07 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9179 ___

[issue814253] Grouprefs in lookbehind assertions

2014-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Now group references to groups with fixed width are supported in lookbehind assertions. -- assignee: effbot - serhiy.storchaka resolution: - fixed stage: patch review - resolved status: open - closed versions: +Python 2.7, Python 3.4, Python 3.5

[issue12728] Python re lib fails case insensitive matches on Unicode data

2014-11-07 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: Removed file: http://bugs.python.org/file36681/re_ignore_case.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12728 ___

[issue12728] Python re lib fails case insensitive matches on Unicode data

2014-11-07 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: Removed file: http://bugs.python.org/file37087/re_cases.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12728 ___

[issue12728] Python re lib fails case insensitive matches on Unicode data

2014-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could anyone please make a review? The script is updated so that it now is compatible with 2.7. There are some differences in equivalence table between 2.7 and 3.4 (e.g. 'ΐ' (U+0390) is not equivalent to 'ΐ' (U+1FD3) in 2.7). -- Added file:

[issue22817] re.split fails with lookahead/behind

2014-11-07 Thread Rex Dwyer
New submission from Rex Dwyer: I would like to split a DNA sequence with a restriction enzyme. A description enzyme can be describe as, e.g. r'(?CA)(?=GCTG)' I cannot get re.split to split on this pattern as perl 5 does. -- components: Regular Expressions messages: 230831 nosy:

[issue22817] re.split fails with lookahead/behind

2014-11-07 Thread Ezio Melotti
Ezio Melotti added the comment: Can you provide a sample DNA sequence (or part of it), the exact code you used, the output you got, and what you expected? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22817

[issue22817] re.split fails with lookahead/behind

2014-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: re.split(r'(?=CA)(?=GCTG)', 'CAGCTG') ['CAGCTG'] I think expected output is ['CA', 'GCTG']. -- nosy: +serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22817

[issue22817] re.split fails with lookahead/behind

2014-11-07 Thread Rex Dwyer
Rex Dwyer added the comment: sorry if I wasn't clear. s = 'ACGTCAGCTGAAAAGCTGACGTACGT re.split(r'(?CA)(?=GCTG)',s) expected output is: acgtCA|GCTGaaacccCA|GCTGacgtacgt - ['ACGTCA', 'GCTGAAAA', 'GCTGACGTACGT'] I would also be able to split a text on word boundaries: re.split(r'\b', the

[issue22817] re.split fails with lookahead/behind

2014-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This looks as one of existing issue about zero-length matches (issue1647489, issue10328). -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22817 ___

[issue22804] Can't run Idle in Windows 8 or windows 64

2014-11-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- nosy: +terry.reedy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22804 ___ ___ Python-bugs-list

[issue22813] No facility for test randomisation

2014-11-07 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- nosy: +ezio.melotti, michael.foord ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22813 ___ ___

[issue22813] No facility for test randomisation

2014-11-07 Thread sbspider
sbspider added the comment: To clarify - are you querying about a) Randomiser for tests, so that tests can have random variables or b) That the order in which tests are called should have the option to be randomized ? -- nosy: +sbspider ___

[issue22813] No facility for test randomisation

2014-11-07 Thread Robert Collins
Robert Collins added the comment: b) -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22813 ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22789] Compress the marshalled data in PYC files

2014-11-07 Thread Raymond Hettinger
Raymond Hettinger added the comment: there is really no reason why they should take more space on disk than necessary, so it's a sure win in any case. That is a nice summary. FWIW, LZ4HC compression sounds like an obvious choice for write-once-read-many data like .pyc files to me. +1

<    1   2