This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rcritten
Recipients rcritten
Date 2011-09-06.13:41:43
SpamBayes Score 1.7071288e-05
Marked as misclassified No
Message-id <1315316505.08.0.403062949645.issue12912@psf.upfronthosting.co.za>
In-reply-to
Content
xmlrpclib.__version__ reports 1.0.1 from Python 2.7 in Fedora 14 and Python 2.6 in Fedora 12.

I discovered this while trying to find a way to identify the version of xmlrpclib. The 2.7 xmlrpclib is not completely backward compatible with that in 2.6

Version-Release number of selected component (if applicable):

python-2.7-7.fc14.x86_64

Steps to Reproduce:

$ rpm -q python
python-2.6.2-8.fc12.x86_64
$ python
Python 2.6.2 (r262:71600, Jun  4 2010, 18:28:58) 
[GCC 4.4.3 20100127 (Red Hat 4.4.3-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import xmlrpclib
>>> xmlrpclib.__version__
'1.0.1'

$ rpm -q python
python-2.7-7.fc14.x86_64
$ python
Python 2.7 (r27:82500, Jul 26 2010, 18:19:48) 
[GCC 4.5.0 20100716 (Red Hat 4.5.0-3)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import xmlrpclib
>>> xmlrpclib.__version__
'1.0.1'
History
Date User Action Args
2011-09-06 13:41:45rcrittensetrecipients: + rcritten
2011-09-06 13:41:45rcrittensetmessageid: <1315316505.08.0.403062949645.issue12912@psf.upfronthosting.co.za>
2011-09-06 13:41:44rcrittenlinkissue12912 messages
2011-09-06 13:41:43rcrittencreate