This file is indexed.

/usr/share/doc/python-webob/docs/_sources/pycon2011/pycon-py3k-sprint.txt is in python-webob 1.1.1-1.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
Python 3 Sprint Outcomes
========================

We provided WebOb with 100% statement coverage at the 2011 PyCon Pyramid
sprint in Atlanta GA.

Participated:

Alexandre Conrad, Patricio Paez, Whit Morriss, Rob Miller, Reed O'Brien,
Chris Shenton, Joe Dallago, Tres Seaver, Casey Duncan, Kai Groner, Chris
McDonough.

In doing so, we added roughly 700-800 unit tests, and disused existing
doctests as coverage (they are still runnable, but don't get run during
``setup.py test``).

We never did get around to actually doing any porting to Python 3.  Adding
comprehensive test coverage proved to be enough work to fill the sprint days.

The bitbucket fork on which this work was done is at
https://bitbucket.org/chrism/webob-py3k.  I've made a tag in that repository
named "sprint-coverage" which represents a reasonable place to pull from for
integration into mainline.

Testing Normally
----------------

 $ python2.x setup.py test

Testing Coverage
----------------

 $ python2.X setup.py nosetests --with-coverage

Testing Documentation
---------------------

Doctests don't run when you run "setup.py test" anymore.  To run them
manually, do:

  $ cd webob
  $ $MYVENV/bin/python setup.py develop
  $ cd docs
  $ $MYVENV/bin/python doctests.py

Blamelist
---------

- webob.acceptparse (aconrad)

- webob.byterange (ppaez)

- webob.cachecontrol (whit)

- webob.dec (rafrombrc)

- webob.descriptors (reedobrien)

- webob.etag (shentonfreude)

- webob.multidict (joe)

- webob.request (tseaver)

- webob.response (caseman/mcdonc)

- webob.exc (joe)

Doctest-to-Unit Test Conversion
-------------------------------

- tests/test_request.txt (aconrad)

- tests/test_response.txt (groner)