[Python-modules-commits] [pyquery] branch master updated (8273293 -> 0feab8b)

Takaki Taniguchi takaki at moszumanska.debian.org
Wed Nov 25 09:56:15 UTC 2015


This is an automated email from the git hooks/post-receive script.

takaki pushed a change to branch master
in repository pyquery.

      from  8273293   Update Vcs fields for git migration
       new  f9613ac   debian/watch: use pypi.debian.net.
       new  e10ea3b   Import pyquery_1.2.9.orig.tar.gz
       new  23a0163   record new upstream branch created by importing pyquery_1.2.9.orig.tar.gz and merge it
       new  4368ff1   [ Jonathan Wiltshire ]
       new  1740ce3   [ TANIGUCHI Takaki ] + Fix incompatible with python-cssselect 0.9.1 (Closes: #791590)
       new  0feab8b   support python3

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGES.rst                                        |  54 ++++
 MANIFEST.in                                        |  13 +-
 PKG-INFO                                           |  72 ++++-
 README.rst                                         |  10 +-
 README_fixt.py                                     |  27 ++
 buildout.cfg                                       |  37 +++
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   4 +
 debian/control                                     |  16 +-
 debian/rules                                       |   2 +-
 debian/watch                                       |   4 +-
 docs/Makefile                                      | 153 +++++++++
 docs/_build/html/_sources/ajax.txt                 |  56 ----
 docs/_build/html/_sources/api.txt                  |   9 -
 docs/_build/html/_sources/scrap.txt                |  19 --
 docs/{ajax.txt => ajax.rst}                        |  10 +-
 docs/ajax_fixt.py                                  |  33 ++
 docs/{api.txt => api.rst}                          |   0
 .../_sources/attributes.txt => attributes.rst}     |   2 +
 docs/attributes.txt                                |  30 --
 .../html/_sources/changes.txt => changes.rst}      |   0
 docs/changes.txt                                   |   4 -
 docs/conf.py                                       | 280 ++++++++++++++++
 docs/{_build/html/_sources/css.txt => css.rst}     |   0
 docs/css.txt                                       |  45 ---
 .../html/_sources/future.txt => future.rst}        |   0
 docs/future.txt                                    |  22 --
 docs/{_build/html/_sources/index.txt => index.rst} |   3 +-
 docs/index.txt                                     |  44 ---
 .../_sources/manipulating.txt => manipulating.rst} |  29 +-
 docs/manipulating.txt                              |  71 ----
 docs/pseudo_classes.rst                            | 330 +++++++++++++++++++
 docs/scrap.rst                                     |  22 ++
 docs/scrap.txt                                     |  19 --
 docs/scrap_fixt.py                                 |  21 ++
 .../html/_sources/testing.txt => testing.rst}      |   0
 docs/testing.txt                                   |  15 -
 docs/{_build/html/_sources/tips.txt => tips.rst}   |  11 +-
 docs/tips.txt                                      |  36 ---
 docs/tips_fixt.py                                  |  21 ++
 .../_sources/traversing.txt => traversing.rst}     |   3 +
 docs/traversing.txt                                |  33 --
 pyquery.egg-info/PKG-INFO                          |  72 ++++-
 pyquery.egg-info/SOURCES.txt                       |  56 ++--
 pyquery.egg-info/requires.txt                      |   2 +-
 pyquery/ajax.py                                    |   5 +-
 pyquery/cssselectpatch.py                          | 359 ++++++++++++++++-----
 pyquery/openers.py                                 |   4 +-
 pyquery/pyquery.py                                 | 281 ++++++++++------
 setup.cfg                                          |  23 +-
 setup.py                                           |  26 +-
 tests/__init__.py                                  |   0
 tests/apps.py                                      |  35 ++
 tests/compat.py                                    |  26 ++
 pyquery/tests.txt => tests/doctests.rst            |   4 +
 pyquery/test.html => tests/invalid.xml             |   2 +
 {pyquery => tests}/test.html                       |   0
 pyquery/test.py => tests/test_pyquery.py           | 289 ++++++++---------
 tox.ini                                            |  62 ++--
 59 files changed, 1918 insertions(+), 902 deletions(-)
 create mode 100644 README_fixt.py
 create mode 100644 buildout.cfg
 create mode 100644 docs/Makefile
 delete mode 100644 docs/_build/html/_sources/ajax.txt
 delete mode 100644 docs/_build/html/_sources/api.txt
 delete mode 100644 docs/_build/html/_sources/scrap.txt
 rename docs/{ajax.txt => ajax.rst} (88%)
 create mode 100644 docs/ajax_fixt.py
 rename docs/{api.txt => api.rst} (100%)
 rename docs/{_build/html/_sources/attributes.txt => attributes.rst} (92%)
 delete mode 100644 docs/attributes.txt
 rename docs/{_build/html/_sources/changes.txt => changes.rst} (100%)
 delete mode 100644 docs/changes.txt
 create mode 100755 docs/conf.py
 rename docs/{_build/html/_sources/css.txt => css.rst} (100%)
 delete mode 100644 docs/css.txt
 rename docs/{_build/html/_sources/future.txt => future.rst} (100%)
 delete mode 100644 docs/future.txt
 rename docs/{_build/html/_sources/index.txt => index.rst} (93%)
 delete mode 100644 docs/index.txt
 rename docs/{_build/html/_sources/manipulating.txt => manipulating.rst} (71%)
 delete mode 100644 docs/manipulating.txt
 create mode 100644 docs/pseudo_classes.rst
 create mode 100644 docs/scrap.rst
 delete mode 100644 docs/scrap.txt
 create mode 100644 docs/scrap_fixt.py
 rename docs/{_build/html/_sources/testing.txt => testing.rst} (100%)
 delete mode 100644 docs/testing.txt
 rename docs/{_build/html/_sources/tips.txt => tips.rst} (81%)
 delete mode 100644 docs/tips.txt
 create mode 100644 docs/tips_fixt.py
 rename docs/{_build/html/_sources/traversing.txt => traversing.rst} (94%)
 delete mode 100644 docs/traversing.txt
 create mode 100644 tests/__init__.py
 create mode 100644 tests/apps.py
 create mode 100644 tests/compat.py
 rename pyquery/tests.txt => tests/doctests.rst (93%)
 copy pyquery/test.html => tests/invalid.xml (96%)
 rename {pyquery => tests}/test.html (100%)
 rename pyquery/test.py => tests/test_pyquery.py (72%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pyquery.git



More information about the Python-modules-commits mailing list