Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 204278
Collapse All | Expand All

(-)tlslite-0.3.8.orig/tlslite/integration/XMLRPCTransport.py (-1 / +9 lines)
Lines 15-21 Link Here
15
                 cryptoID=None, protocol=None,
15
                 cryptoID=None, protocol=None,
16
                 x509Fingerprint=None,
16
                 x509Fingerprint=None,
17
                 x509TrustList=None, x509CommonName=None,
17
                 x509TrustList=None, x509CommonName=None,
18
                 settings=None):
18
                 settings=None,
19
                 use_datetime=0):
19
        """Create a new XMLRPCTransport.
20
        """Create a new XMLRPCTransport.
20
21
21
        An instance of this class can be passed to L{xmlrpclib.ServerProxy}
22
        An instance of this class can be passed to L{xmlrpclib.ServerProxy}
Lines 108-115 Link Here
108
        @param settings: Various settings which can be used to control
109
        @param settings: Various settings which can be used to control
109
        the ciphersuites, certificate types, and SSL/TLS versions
110
        the ciphersuites, certificate types, and SSL/TLS versions
110
        offered by the client.
111
        offered by the client.
112
113
        @type use_datetime: bool
114
        @param use_datetime: In python 2.5, present date/time values
115
        as L{datetime.datetime} and accept L{datetime.datetime},
116
        L{datetime.date} and L{datetime.time} objects, if flag is
117
        true.
111
        """
118
        """
112
119
120
        self._use_datetime = use_datetime
113
        ClientHelper.__init__(self,
121
        ClientHelper.__init__(self,
114
                 username, password, sharedKey,
122
                 username, password, sharedKey,
115
                 certChain, privateKey,
123
                 certChain, privateKey,

Return to bug 204278