Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1872)

Issue 6506074: Making httplib2.Http instances pickleable. (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
11 years, 7 months ago by dhermes
Modified:
11 years, 4 months ago
CC:
httplib2-dev_googlegroups.com
Visibility:
Public.

Description

Making httplib2.Http instances pickleable.

Patch Set 1 #

Total comments: 2

Patch Set 2 : Adding unit tests for pickled Http objects. #

Total comments: 2

Patch Set 3 : Making sure connections gets dropped and making tests less brittle. #

Total comments: 2

Patch Set 4 : Adding in missing args and kwargs to ResponseDict. #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+176 lines, -75 lines) Patch
M python2/httplib2/__init__.py View 1 2 3 7 chunks +83 lines, -68 lines 0 comments Download
M python2/httplib2test.py View 1 2 7 chunks +42 lines, -7 lines 0 comments Download
M python3/httplib2/__init__.py View 1 2 1 chunk +14 lines, -0 lines 2 comments Download
M python3/httplib2test.py View 1 2 2 chunks +37 lines, -0 lines 0 comments Download

Messages

Total messages: 18
dhermes
11 years, 7 months ago (2012-09-05 14:53:45 UTC) #1
jcgregorio_google
Needs unit tests, including one where you attach an attribute to the request method. https://codereview.appspot.com/6506074/diff/1/python2/httplib2/__init__.py ...
11 years, 7 months ago (2012-09-05 15:20:07 UTC) #2
dhermes
https://codereview.appspot.com/6506074/diff/1/python2/httplib2/__init__.py File python2/httplib2/__init__.py (right): https://codereview.appspot.com/6506074/diff/1/python2/httplib2/__init__.py#newcode1242 python2/httplib2/__init__.py:1242: # credentials which handle auth On 2012/09/05 15:20:07, jcgregorio_google ...
11 years, 7 months ago (2012-09-05 15:23:14 UTC) #3
dhermes
Any issue here? On Wed, Sep 5, 2012 at 8:23 AM, <dhermes@google.com> wrote: > > ...
11 years, 7 months ago (2012-09-06 20:34:46 UTC) #4
jcgregorio_google
Yes, it still needs unit tests like I mentioned in my first email. -joe On ...
11 years, 7 months ago (2012-09-07 01:21:12 UTC) #5
dhermes
Sorry it took me 6 days. I have added unit tests, though I'm not sure ...
11 years, 7 months ago (2012-09-13 06:05:48 UTC) #6
jcgregorio_google
https://codereview.appspot.com/6506074/diff/6001/python2/httplib2test.py File python2/httplib2test.py (right): https://codereview.appspot.com/6506074/diff/6001/python2/httplib2test.py#newcode44 python2/httplib2test.py:44: pickleTemplate = ( This is going to be fragile. ...
11 years, 7 months ago (2012-09-13 11:30:33 UTC) #7
dhermes
https://codereview.appspot.com/6506074/diff/6001/python2/httplib2test.py File python2/httplib2test.py (right): https://codereview.appspot.com/6506074/diff/6001/python2/httplib2test.py#newcode44 python2/httplib2test.py:44: pickleTemplate = ( I got rid of the fragility ...
11 years, 7 months ago (2012-09-13 15:40:52 UTC) #8
jcgregorio_google
https://codereview.appspot.com/6506074/diff/9001/python2/httplib2/__init__.py File python2/httplib2/__init__.py (right): https://codereview.appspot.com/6506074/diff/9001/python2/httplib2/__init__.py#newcode1075 python2/httplib2/__init__.py:1075: return super(ResponseDict, self).__init__(*args, **kwargs) Where do *args, and **kwargs ...
11 years, 7 months ago (2012-09-13 16:12:13 UTC) #9
dhermes
https://codereview.appspot.com/6506074/diff/9001/python2/httplib2/__init__.py File python2/httplib2/__init__.py (right): https://codereview.appspot.com/6506074/diff/9001/python2/httplib2/__init__.py#newcode1075 python2/httplib2/__init__.py:1075: return super(ResponseDict, self).__init__(*args, **kwargs) Good catch. I must have ...
11 years, 7 months ago (2012-09-13 16:39:51 UTC) #10
dhermes
Joe, Have you had a chance to see the latest diffs? On Thu, Sep 13, ...
11 years, 7 months ago (2012-09-17 17:20:03 UTC) #11
jcgregorio_google
https://codereview.appspot.com/6506074/diff/14002/python3/httplib2/__init__.py File python3/httplib2/__init__.py (right): https://codereview.appspot.com/6506074/diff/14002/python3/httplib2/__init__.py#newcode801 python3/httplib2/__init__.py:801: def __init__(self, cache=None, timeout=None, proxy_info=None, Looks like defaulting to ...
11 years, 7 months ago (2012-09-17 17:46:22 UTC) #12
dhermes
https://codereview.appspot.com/6506074/diff/14002/python3/httplib2/__init__.py File python3/httplib2/__init__.py (right): https://codereview.appspot.com/6506074/diff/14002/python3/httplib2/__init__.py#newcode801 python3/httplib2/__init__.py:801: def __init__(self, cache=None, timeout=None, proxy_info=None, Joe, This never existed ...
11 years, 7 months ago (2012-09-17 17:48:19 UTC) #13
jcgregorio_google
LGTM Conditional on getting that next CL to fix up python3 :) On 2012/09/17 17:48:19, ...
11 years, 7 months ago (2012-09-18 14:00:33 UTC) #14
jcgregorio_google
Are you sure you are sync'd to head? I get failed hunks when I try ...
11 years, 7 months ago (2012-09-18 14:04:18 UTC) #15
dhermes
I did sync to head. I am also getting failed hunks when I try to ...
11 years, 7 months ago (2012-09-18 15:30:46 UTC) #16
dhermes
Does this work? On Tue, Sep 18, 2012 at 8:30 AM, Daniel Hermes <dhermes@google.com> wrote: ...
11 years, 7 months ago (2012-09-20 21:44:16 UTC) #17
jcgregorio_google
11 years, 6 months ago (2012-10-03 18:38:10 UTC) #18
Committed at
http://code.google.com/p/httplib2/source/detail?r=1f1f7d61957691b482eea7b5c19...

On 2012/09/20 21:44:16, dhermes wrote:
> Does this work?
> 
> 
> On Tue, Sep 18, 2012 at 8:30 AM, Daniel Hermes <mailto:dhermes@google.com>
wrote:
> 
> > I did sync to head. I am also getting failed hunks when I try to apply to
> > a clean repo, but it is unclear why they are failing.
> >
> > The first hunk is an "import pickle" statement that falls in alphabetical
> > order in python3/httplib2test.py and the second is just the tests I added.
> >
> > I don't know enough about mercurial/rietveld to understand why this is
> > failing. I manually applied the failed hunks and ran an "hg diff >
> > manual_apply.diff" and have attached that diff, which will successfully
> > apply.
> >
> > Let me know if that works for you.
> >
> >
> > On Tue, Sep 18, 2012 at 7:04 AM, <mailto:jcgregorio@google.com> wrote:
> >
> >> Are you sure you are sync'd to head? I get failed hunks
> >> when I try to apply this.
> >>
> >>
> >> On 2012/09/18 14:00:33, jcgregorio_google wrote:
> >>
> >>> LGTM
> >>>
> >>
> >>  Conditional on getting that next CL to fix up python3 :)
> >>>
> >>
> >>  On 2012/09/17 17:48:19, dhermes wrote:
> >>> >
> >>>
> >> https://codereview.appspot.**com/6506074/diff/14002/**
> >>
>
python3/httplib2/__init__.py<https://codereview.appspot.com/6506074/diff/14002/python3/httplib2/__init__.py>
> >>
> >>> > File python3/httplib2/__init__.py (right):
> >>> >
> >>> >
> >>>
> >>
> >> https://codereview.appspot.**com/6506074/diff/14002/**
> >>
>
python3/httplib2/__init__.py#**newcode801<https://codereview.appspot.com/6506074/diff/14002/python3/httplib2/__init__.py#newcode801>
> >>
> >>> > python3/httplib2/__init__.py:**801: def __init__(self, cache=None,
> >>>
> >> timeout=None,
> >>
> >>> > proxy_info=None,
> >>> > Joe,
> >>> >
> >>> > This never existed before. Can we add this in a subsequent change?
> >>>
> >> The point
> >>
> >>> of
> >>> > this change was to make Http instances pickle-able.
> >>> >
> >>> > I'll be happy to start working on the next change right away.
> >>> >
> >>> > On 2012/09/17 17:46:22, jcgregorio_google wrote:
> >>> > > Looks like defaulting to proxyinfo from environment never made it
> >>>
> >> into the
> >>
> >>> > code,
> >>> > > even though that's what the doc comments say. Can you update the
> >>>
> >> proxy
> >>
> >>> > handling
> >>> > > for Python 3 be the same as Python 2?
> >>>
> >>
> >>
> >>
> >>
>
https://codereview.appspot.**com/6506074/%3Chttps://codereview.appspot.com/65...>
> >>
> >
> >
> >
> > --
> > Daniel Hermes
> > Developer Programs Engineer
> >
> 
> 
> 
> -- 
> Daniel Hermes
> Developer Programs Engineer
Sign in to reply to this message.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b