[brian zimmer]
>As some might be aware, CPython is getting ready to release version 2.1
>with a number of new features:
>
>http://www.amk.ca/python/2.1/
>
>I was wondering if anyone has started adding these to Jython?
I'm currently working on the coercion model and rich comparison.
>If not I'd like to offer assistance in getting Jython up to speed.
I have added the major new features as task to the task manager on
sourceforge. If anyone wants to tackle a task or fix a bug they can post
their intention here (to avoid duplicate work). Patches can be posted to
the patch manager.
http://sourceforge.net/pm/task.php?group_project_id=6960&group_id=12867&func=browse
http://sourceforge.net/patch/?group_id=12867
Developer rights are granted to patch writers with a proven history of
atleast 1 non-trivial patch.
In addition to the tasks on the tasklist, I hope these tests from
CPython-2.1 will succeed by the time Jython-2.1 is released.
import regrtest
tests = [
'test_atexit',
'test_augassign',
'test_binascii',
'test_binhex',
'test_bisect',
'test_bufio',
'test_builtin',
'test_cfgparser',
'test_cgi',
'test_charmapcodec',
'test_class',
'test_coercion',
'test_compare',
'test_compile',
'test_contains',
'test_cookie',
'test_copy_reg',
'test_cpickle',
# 'test_crypt',
'test_dospath',
'test_dumbdbm',
'test_exceptions',
'test_extcall',
'test_file',
'test_format',
'test_funcattrs',
'test_getopt',
'test_grammar',
'test_gzip',
'test_hash',
'test_import',
'test_long',
'test_mailbox',
'test_math',
'test_md5',
'test_mimetools',
'test_MimeWriter',
'test_ntpath',
'test_operations',
'test_operator',
'test_pickle',
'test_pkg',
'test_posixpath',
'test_pow',
'test_re',
'test_rfc822',
'test_richcmp',
'test_sha',
'test_socket',
'test_sre',
'test_strftime',
'test_string',
'test_StringIO',
'test_struct',
'test_thread',
'test_threadedtempfile',
'test_time',
'test_tokenize',
'test_types',
'test_ucn',
'test_unicode',
'test_unpack',
'test_urllib',
'test_urlparse',
'test_userdict',
'test_userlist',
'test_userstring',
'test_xmllib',
'test_xreadline',
'test_zipfile',
'test_zlib',
]
regrtest.main(tests)
regards,
finn
|