Files
requests3/requests
Idan Gazit 324336e7f6 Lazily encode data, params, files
Previously, data, params, and files were encoded and stored in
Request.__init__, and subsequently put into service during
Request.send. The problem with this approach is that hooks and auth
callables need to be aware of the eager encoding, and if they touch the
originals, make sure to update the encoded versions.

A better approach is to only encode late in the sending process. This
way, hooks and auth callables can safely make changes without fear of
the old, encoded variant overriding it.
2012-05-03 00:04:13 +03:00
..
2012-03-31 17:39:26 -04:00
2012-05-01 07:17:35 -04:00
2012-05-01 07:06:55 -04:00
2012-03-30 23:15:31 -04:00
2012-01-21 07:07:18 -05:00
2012-05-03 00:04:13 +03:00
2012-01-23 00:15:25 -05:00
2012-01-23 00:15:25 -05:00
2012-04-22 22:26:53 -04:00