[issue12912] xmlrpclib.__version__ not bumped with updates

2016-01-29 Thread Berker Peksag
Berker Peksag added the comment: xmlrpc.client.__version__ is used by Transport.user_agent and it has been changed to use sys.version[:3] in 197d703fb23e. It's too late for 2.7 so I think this can be closed now. Thanks for the report, Rob! -- nosy: +berker.peksag resolution: -> out o

[issue12912] xmlrpclib.__version__ not bumped with updates

2016-01-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue12912] xmlrpclib.__version__ not bumped with updates

2011-09-07 Thread Éric Araujo
Éric Araujo added the comment: > Unfortunately that update changed the interface of > Transport.make_connection(), breaking any code that overrode or > extended it. That’s a bad thing. Can you open a bug report about that? We need at least a documentation update. -- ___

[issue12912] xmlrpclib.__version__ not bumped with updates

2011-09-06 Thread Rob Crittenden
Rob Crittenden added the comment: Python 2.7 changed the internal class used in xmlrpclib from HTTP to HTTPConnection. I have code that subclasses httplib.HTTP to use the python-nss package to create a connection over SSL (similiar to httplib.HTTPS). My code currently looks something like t

[issue12912] xmlrpclib.__version__ not bumped with updates

2011-09-06 Thread Éric Araujo
Éric Araujo added the comment: > I figured that since xmlrpclib has its own version it should be meaningful. That was most probably the intent of the attribute, but it seems to have become unmaintained. In any case, a change could not be done in a 2.7 bugfix release. Maybe it’s worth changin

[issue12912] xmlrpclib.__version__ not bumped with updates

2011-09-06 Thread Rob Crittenden
Rob Crittenden added the comment: Yes, this is the solution I ended up using as a workaround. I figured that since xmlrpclib has its own version it should be meaningful. -- ___ Python tracker

[issue12912] xmlrpclib.__version__ not bumped with updates

2011-09-06 Thread Éric Araujo
Éric Araujo added the comment: > The 2.7 xmlrpclib is not completely backward compatible with that in 2.6 Can’t you check sys.version_info then? -- nosy: +eric.araujo ___ Python tracker __

[issue12912] xmlrpclib.__version__ not bumped with updates

2011-09-06 Thread Rob Crittenden
New submission from Rob Crittenden : 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 Versi