MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / iter_fields

Function iter_fields

tools/gh_api.py:200–206  ·  view source on GitHub ↗
(fields)

Source from the content-addressed store, hash-verified

198# The only change is to iter_fields, to enforce S3's required key ordering
199
200def iter_fields(fields):
201 fields = fields.copy()
202 for key in [
203 'key', 'acl', 'Filename', 'success_action_status',
204 'AWSAccessKeyId', 'Policy', 'Signature', 'Content-Type', 'file']:
205 yield key, fields.pop(key)
206 yield from fields.items()
207
208def encode_multipart_formdata(fields, boundary=None):
209 """

Callers 1

Calls 2

copyMethod · 0.45
popMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…