Hi ironpython,

Here's your Daily Digest of new issues for project "IronPython".

In today's digest:ISSUES

1. [New issue] re.compile does not use cache

----------------------------------------------

ISSUES

1. [New issue] re.compile does not use cache
http://ironpython.codeplex.com/workitem/35146
User paweljasinski has proposed the issue:

"In case of cpython:

Python 2.7.5 (default, Oct  2 2013, 22:34:09)
[GCC 4.8.1] on cygwin
Type "help", "copyright", "credits" or "license" for more information.



import re
re.compile("abc")
<_sre.SRE_Pattern object at 0x6fffffe0ab0>
re.compile("abc")
<_sre.SRE_Pattern object at 0x6fffffe0ab0>



Ironpython:



re.compile("abc")
<RE_Pattern object at 0x000000000000002E>
re.compile("abc")
<RE_Pattern object at 0x000000000000002F>


"
----------------------------------------------



----------------------------------------------
You are receiving this email because you subscribed to notifications on 
CodePlex.

To report a bug, request a feature, or add a comment, visit IronPython Issue 
Tracker. You can unsubscribe or change your issue notification settings on 
CodePlex.com.
_______________________________________________
Ironpython-users mailing list
[email protected]
https://mail.python.org/mailman/listinfo/ironpython-users

Reply via email to