This file is indexed.

/usr/lib/python2.7/dist-packages/msrest-0.4.14.egg-info/PKG-INFO is in python-msrest 0.4.14-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
Metadata-Version: 1.1
Name: msrest
Version: 0.4.14
Summary: AutoRest swagger generator Python client runtime.
Home-page: https://github.com/Azure/msrest-for-python
Author: Microsoft Corporation
Author-email: UNKNOWN
License: MIT License
Description: AutoRest: Python Client Runtime
        ================================
        
        .. image:: https://travis-ci.org/Azure/msrest-for-python.svg?branch=master
         :target: https://travis-ci.org/Azure/msrest-for-python
        
        .. image:: https://codecov.io/gh/azure/msrest-for-python/branch/master/graph/badge.svg
         :target: https://codecov.io/gh/azure/msrest-for-python
        
        Installation
        ------------
        
        To install:
        
        .. code-block:: bash
        
            $ pip install msrest
        
        
        Release History
        ---------------
        
        2017-08-23 Version 0.4.14
        +++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Fix regression introduced in msrest 0.4.12 - dict syntax with enum modeled as string and enum used
        
        2017-08-22 Version 0.4.13
        +++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Fix regression introduced in msrest 0.4.12 - dict syntax using isodate.Duration (#42)
        
        2017-08-21 Version 0.4.12
        +++++++++++++++++++++++++
        
        **Features**
        
        - Input is now more lenient
        - Model have a "validate" method to check content constraints
        - Model have now 4 new methods:
        
          - "serialize" that gives the RestAPI that will be sent
          - "as_dict" that returns a dict version of the Model. Callbacks are available.
          - "deserialize" the parses the RestAPI JSON into a Model
          - "from_dict" that parses several dict syntax into a Model. Callbacks are available.
        
        More details and examples in the Wiki article on Github:
        https://github.com/Azure/msrest-for-python/wiki/msrest-0.4.12---Serialization-change
        
        **Bugfixes**
        
        - Better Enum checking (#38)
        
        2017-06-21 Version 0.4.11
        +++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Fix incorrect dependency to "requests" 2.14.x, instead of 2.x meant in 0.4.8
        
        2017-06-15 Version 0.4.10
        +++++++++++++++++++++++++
        
        **Features**
        
        - Add requests hooks to configuration
        
        2017-06-08 Version 0.4.9
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Accept "null" value for paging array as an empty list and do not raise (#30)
        
        2017-05-22 Version 0.4.8
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Fix random "pool is closed" error (#29)
        - Fix requests dependency to version 2.x, since version 3.x is annunced to be breaking.
        
        2017-04-04 Version 0.4.7
        ++++++++++++++++++++++++
        
        **BugFixes**
        
        - Refactor paging #22:
        
           - "next" is renamed "advance_page" and "next" returns only 1 element (Python 2 expected behavior)
           - paging objects are now real generator and support the "next()" built-in function without need for "iter()"
        
        - Raise accurate DeserialisationError on incorrect RestAPI discriminator usage #27
        - Fix discriminator usage of the base class name #27
        - Remove default mutable arguments in Clients #20
        - Fix object comparison in some scenarios #24
        
        2017-03-06 Version 0.4.6
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Allow Model sub-classes to be serialized if type is "object"
        
        2017-02-13 Version 0.4.5
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Fix polymorphic deserialization #11
        - Fix regexp validation if '\\w' is used in Python 2.7 #13
        - Fix dict deserialization if keys are unicode in Python 2.7
        
        **Improvements**
        
        - Add polymorphic serialisation from dict objects
        - Remove chardet and use HTTP charset declaration (fallback to utf8)
        
        2016-09-14 Version 0.4.4
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Remove paging URL validation, part of fix https://github.com/Azure/autorest/pull/1420
        
        **Disclaimer**
        
        In order to get paging fixes for impacted clients, you need this package and Autorest > 0.17.0 Nightly 20160913
        
        2016-09-01 Version 0.4.3
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Better exception message (https://github.com/Azure/autorest/pull/1300)
        
        2016-08-15 Version 0.4.2
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Fix serialization if "object" type contains None (https://github.com/Azure/autorest/issues/1353)
        
        2016-08-08 Version 0.4.1
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Fix compatibility issues with requests 2.11.0 (https://github.com/Azure/autorest/issues/1337)
        - Allow url of ClientRequest to have parameters (https://github.com/Azure/autorest/issues/1217)
        
        2016-05-25 Version 0.4.0
        ++++++++++++++++++++++++
        
        This version has no bug fixes, but implements new features of Autorest:
        - Base64 url type
        - unixtime type
        - x-ms-enum modelAsString flag
        
        **Behaviour changes**
        
        - Add Platform information in UserAgent
        - Needs Autorest > 0.17.0 Nightly 20160525
        
        2016-04-26 Version 0.3.0
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Read only values are no longer in __init__ or sent to the server (https://github.com/Azure/autorest/pull/959)
        - Useless kwarg removed
        
        **Behaviour changes**
        
        - Needs Autorest > 0.16.0 Nightly 20160426
        
        
        2016-03-25 Version 0.2.0
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Manage integer enum values (https://github.com/Azure/autorest/pull/879)
        - Add missing application/json Accept HTTP header (https://github.com/Azure/azure-sdk-for-python/issues/553)
        
        **Behaviour changes**
        
        - Needs Autorest > 0.16.0 Nightly 20160324
        
        
        2016-03-21 Version 0.1.3
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Deserialisation of generic resource if null in JSON (https://github.com/Azure/azure-sdk-for-python/issues/544)
        
        
        2016-03-14 Version 0.1.2
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - urllib3 side effect (https://github.com/Azure/autorest/issues/824)
        
        
        2016-03-04 Version 0.1.1
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Source package corrupted in Pypi (https://github.com/Azure/autorest/issues/799)
        
        2016-03-04 Version 0.1.0
        +++++++++++++++++++++++++
        
        **Behavioural Changes**
        
        - Removed custom logging set up and configuration. All loggers are now children of the root logger 'msrest' with no pre-defined configurations.
        - Replaced _required attribute in Model class with more extensive _validation dict.
        
        **Improvement**
        
        - Removed hierarchy scanning for attribute maps from base Model class - relies on generator to populate attribute
          maps according to hierarchy.
        - Base class Paged now inherits from collections.Iterable.
        - Data validation during serialization using custom parameters (e.g. max, min etc).
        - Added ValidationError to be raised if invalid data encountered during serialization.
        
        2016-02-29 Version 0.0.3
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Source package corrupted in Pypi (https://github.com/Azure/autorest/issues/718)
        
        2016-02-19 Version 0.0.2
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Fixed bug in exception logging before logger configured.
        
        2016-02-19 Version 0.0.1
        ++++++++++++++++++++++++
        
        - Initial release.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development