[Python-Dev] IronPython and AST branch

2006-09-15 Thread Sanghyeon Seo
CPython 2.5, which will be released Real Soon Now, is the first version to ship with new "AST branch", which have been in development for a long time. AST branch uses ASDL, Abstract Syntax Description Language http://asdl.sourceforge.net/ to describe Abstract Syntax Tree data structure used by CPy

[Python-Dev] Time since the epoch

2006-05-04 Thread Sanghyeon Seo
Hello, Python library reference 6.11 says, "The epoch is the point where the time starts. On January 1st of that year, at 0 hours, the "time since the epoch'' is zero. For Unix, the epoch is 1970." To me this seems to suggest that the epoch may vary among platforms and implementations as long as

[Python-Dev] __getslice__ usage in sre_parse

2006-04-30 Thread Sanghyeon Seo
Hello, Python language reference 3.3.6 deprecates __getslice__. I think it's okay that UserList.py has it, but sre_parse shouldn't use it, no? __getslice__ is not implemented in IronPython and this breaks usage of _sre.py, a pure-Python implementation of _sre, on IronPython: http://ubique.ch/code

Re: [Python-Dev] base64 module

2006-04-06 Thread Sanghyeon Seo
2006/4/7, Aahz <[EMAIL PROTECTED]>: > > Please submit a bug report on SourceForge and report back the ID. http://python.org/sf/1466065 Seo Sanghyeon ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Uns

[Python-Dev] base64 module

2006-04-06 Thread Sanghyeon Seo
Hello, base64 module documentation for b64decode function says, "TypeError is raised if s were incorrectly padded or if there are non-alphabet characters present in the string." But this doesn't seem to be the case. Testcase: import base64 base64.b64decode('%') Since % is a non-alphabet characte