[Python-modules-commits] [chardet] 11/12: Clean egg-info

Daniele Tricoli eriol-guest at moszumanska.debian.org
Sun Jun 18 21:58:35 UTC 2017


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

eriol-guest pushed a commit to branch master
in repository chardet.

commit efbd4f5bff9918090f3ba4b374785de2612d948e
Author: Daniele Tricoli <eriol at mornie.org>
Date:   Sun Jun 18 23:40:12 2017 +0200

    Clean egg-info
---
 .gitignore                            |   1 +
 chardet.egg-info/PKG-INFO             |  94 -------
 chardet.egg-info/SOURCES.txt          | 451 ----------------------------------
 chardet.egg-info/dependency_links.txt |   1 -
 chardet.egg-info/entry_points.txt     |   3 -
 chardet.egg-info/top_level.txt        |   1 -
 debian/clean                          |   1 +
 7 files changed, 2 insertions(+), 550 deletions(-)

diff --git a/.gitignore b/.gitignore
index bee8a64..ed507aa 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
+*.egg-info/*
 __pycache__
diff --git a/chardet.egg-info/PKG-INFO b/chardet.egg-info/PKG-INFO
deleted file mode 100644
index 57aa091..0000000
--- a/chardet.egg-info/PKG-INFO
+++ /dev/null
@@ -1,94 +0,0 @@
-Metadata-Version: 1.1
-Name: chardet
-Version: 3.0.4
-Summary: Universal encoding detector for Python 2 and 3
-Home-page: https://github.com/chardet/chardet
-Author: Daniel Blanchard
-Author-email: dan.blanchard at gmail.com
-License: LGPL
-Description: Chardet: The Universal Character Encoding Detector
-        --------------------------------------------------
-        
-        .. image:: https://img.shields.io/travis/chardet/chardet/stable.svg
-           :alt: Build status
-           :target: https://travis-ci.org/chardet/chardet
-        
-        .. image:: https://img.shields.io/coveralls/chardet/chardet/stable.svg
-           :target: https://coveralls.io/r/chardet/chardet
-        
-        .. image:: https://img.shields.io/pypi/v/chardet.svg
-           :target: https://warehouse.python.org/project/chardet/
-           :alt: Latest version on PyPI
-        
-        .. image:: https://img.shields.io/pypi/l/chardet.svg
-           :alt: License
-        
-        
-        Detects
-         - ASCII, UTF-8, UTF-16 (2 variants), UTF-32 (4 variants)
-         - Big5, GB2312, EUC-TW, HZ-GB-2312, ISO-2022-CN (Traditional and Simplified Chinese)
-         - EUC-JP, SHIFT_JIS, CP932, ISO-2022-JP (Japanese)
-         - EUC-KR, ISO-2022-KR (Korean)
-         - KOI8-R, MacCyrillic, IBM855, IBM866, ISO-8859-5, windows-1251 (Cyrillic)
-         - ISO-8859-5, windows-1251 (Bulgarian)
-         - ISO-8859-1, windows-1252 (Western European languages)
-         - ISO-8859-7, windows-1253 (Greek)
-         - ISO-8859-8, windows-1255 (Visual and Logical Hebrew)
-         - TIS-620 (Thai)
-        
-        .. note::
-           Our ISO-8859-2 and windows-1250 (Hungarian) probers have been temporarily
-           disabled until we can retrain the models.
-        
-        Requires Python 2.6, 2.7, or 3.3+.
-        
-        Installation
-        ------------
-        
-        Install from `PyPI <https://pypi.python.org/pypi/chardet>`_::
-        
-            pip install chardet
-        
-        Documentation
-        -------------
-        
-        For users, docs are now available at https://chardet.readthedocs.io/.
-        
-        Command-line Tool
-        -----------------
-        
-        chardet comes with a command-line script which reports on the encodings of one
-        or more files::
-        
-            % chardetect somefile someotherfile
-            somefile: windows-1252 with confidence 0.5
-            someotherfile: ascii with confidence 1.0
-        
-        About
-        -----
-        
-        This is a continuation of Mark Pilgrim's excellent chardet. Previously, two
-        versions needed to be maintained: one that supported python 2.x and one that
-        supported python 3.x.  We've recently merged with `Ian Cordasco <https://github.com/sigmavirus24>`_'s
-        `charade <https://github.com/sigmavirus24/charade>`_ fork, so now we have one
-        coherent version that works for Python 2.6+.
-        
-        :maintainer: Dan Blanchard
-        
-Keywords: encoding,i18n,xml
-Platform: UNKNOWN
-Classifier: Development Status :: 4 - Beta
-Classifier: Intended Audience :: Developers
-Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
-Classifier: Operating System :: OS Independent
-Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 2
-Classifier: Programming Language :: Python :: 2.6
-Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.3
-Classifier: Programming Language :: Python :: 3.4
-Classifier: Programming Language :: Python :: 3.5
-Classifier: Programming Language :: Python :: 3.6
-Classifier: Topic :: Software Development :: Libraries :: Python Modules
-Classifier: Topic :: Text Processing :: Linguistic
diff --git a/chardet.egg-info/SOURCES.txt b/chardet.egg-info/SOURCES.txt
deleted file mode 100644
index e88a215..0000000
--- a/chardet.egg-info/SOURCES.txt
+++ /dev/null
@@ -1,451 +0,0 @@
-LICENSE
-MANIFEST.in
-NOTES.rst
-README.rst
-setup.cfg
-setup.py
-test.py
-chardet/__init__.py
-chardet/big5freq.py
-chardet/big5prober.py
-chardet/chardistribution.py
-chardet/charsetgroupprober.py
-chardet/charsetprober.py
-chardet/codingstatemachine.py
-chardet/compat.py
-chardet/cp949prober.py
-chardet/enums.py
-chardet/escprober.py
-chardet/escsm.py
-chardet/eucjpprober.py
-chardet/euckrfreq.py
-chardet/euckrprober.py
-chardet/euctwfreq.py
-chardet/euctwprober.py
-chardet/gb2312freq.py
-chardet/gb2312prober.py
-chardet/hebrewprober.py
-chardet/jisfreq.py
-chardet/jpcntx.py
-chardet/langbulgarianmodel.py
-chardet/langcyrillicmodel.py
-chardet/langgreekmodel.py
-chardet/langhebrewmodel.py
-chardet/langhungarianmodel.py
-chardet/langthaimodel.py
-chardet/langturkishmodel.py
-chardet/latin1prober.py
-chardet/mbcharsetprober.py
-chardet/mbcsgroupprober.py
-chardet/mbcssm.py
-chardet/sbcharsetprober.py
-chardet/sbcsgroupprober.py
-chardet/sjisprober.py
-chardet/universaldetector.py
-chardet/utf8prober.py
-chardet/version.py
-chardet.egg-info/PKG-INFO
-chardet.egg-info/SOURCES.txt
-chardet.egg-info/dependency_links.txt
-chardet.egg-info/entry_points.txt
-chardet.egg-info/top_level.txt
-chardet/cli/__init__.py
-chardet/cli/chardetect.py
-docs/.gitignore
-docs/Makefile
-docs/README.md
-docs/conf.py
-docs/faq.rst
-docs/how-it-works.rst
-docs/index.rst
-docs/make.bat
-docs/supported-encodings.rst
-docs/usage.rst
-docs/api/chardet.rst
-docs/api/modules.rst
-tests/README.txt
-tests/Big5/0804.blogspot.com.xml
-tests/Big5/_chromium_Big5_with_no_encoding_specified.html
-tests/Big5/_ude_1.txt
-tests/Big5/blog.worren.net.xml
-tests/Big5/carbonxiv.blogspot.com.xml
-tests/Big5/catshadow.blogspot.com.xml
-tests/Big5/coolloud.org.tw.xml
-tests/Big5/digitalwall.com.xml
-tests/Big5/ebao.us.xml
-tests/Big5/fudesign.blogspot.com.xml
-tests/Big5/kafkatseng.blogspot.com.xml
-tests/Big5/ke207.blogspot.com.xml
-tests/Big5/leavesth.blogspot.com.xml
-tests/Big5/letterlego.blogspot.com.xml
-tests/Big5/linyijen.blogspot.com.xml
-tests/Big5/marilynwu.blogspot.com.xml
-tests/Big5/myblog.pchome.com.tw.xml
-tests/Big5/oui-design.com.xml
-tests/Big5/sanwenji.blogspot.com.xml
-tests/Big5/sinica.edu.tw.xml
-tests/Big5/sylvia1976.blogspot.com.xml
-tests/Big5/tlkkuo.blogspot.com.xml
-tests/Big5/unoriginalblog.com.xml
-tests/Big5/upsaid.com.xml
-tests/Big5/willythecop.blogspot.com.xml
-tests/Big5/ytc.blogspot.com.xml
-tests/CP932/hardsoft.at.webry.info.xml
-tests/CP932/www2.chuo-u.ac.jp-suishin.xml
-tests/CP932/y-moto.com.xml
-tests/CP949/ricanet.com.xml
-tests/EUC-JP/_mozilla_bug426271_text-euc-jp.html
-tests/EUC-JP/_mozilla_bug431054_text.html
-tests/EUC-JP/_mozilla_bug620106_text.html
-tests/EUC-JP/_ude_1.txt
-tests/EUC-JP/aivy.co.jp.xml
-tests/EUC-JP/akaname.main.jp.xml
-tests/EUC-JP/arclamp.jp.xml
-tests/EUC-JP/aristrist.s57.xrea.com.xml
-tests/EUC-JP/artifact-jp.com.xml
-tests/EUC-JP/atom.ycf.nanet.co.jp.xml
-tests/EUC-JP/azito.under.jp.xml
-tests/EUC-JP/azoz.org.xml
-tests/EUC-JP/blog.kabu-navi.com.atom.xml
-tests/EUC-JP/blog.kabu-navi.com.xml
-tests/EUC-JP/bphrs.net.xml
-tests/EUC-JP/ch.kitaguni.tv.xml
-tests/EUC-JP/club.h14m.org.xml
-tests/EUC-JP/contents-factory.com.xml
-tests/EUC-JP/furusatonoeki.cutegirl.jp.xml
-tests/EUC-JP/manana.moo.jp.xml
-tests/EUC-JP/mimizun.com.xml
-tests/EUC-JP/misuzilla.org.xml
-tests/EUC-JP/overcube.com.atom.xml
-tests/EUC-JP/overcube.com.xml
-tests/EUC-JP/pinkupa.com.xml
-tests/EUC-JP/rdf.ycf.nanet.co.jp.xml
-tests/EUC-JP/siesta.co.jp.aozora.xml
-tests/EUC-JP/tls.org.xml
-tests/EUC-JP/yukiboh.moo.jp.xml
-tests/EUC-KR/_chromium_windows-949_with_no_encoding_specified.html
-tests/EUC-KR/_mozilla_bug9357_text.html
-tests/EUC-KR/_ude_euc1.txt
-tests/EUC-KR/_ude_euc2.txt
-tests/EUC-KR/acnnewswire.net.xml
-tests/EUC-KR/alogblog.com.xml
-tests/EUC-KR/arts.egloos.com.xml
-tests/EUC-KR/birder.egloos.com.xml
-tests/EUC-KR/blog.bd-lab.com.xml
-tests/EUC-KR/blog.empas.com.xml
-tests/EUC-KR/blog.rss.naver.com.xml
-tests/EUC-KR/calmguy.egloos.com.xml
-tests/EUC-KR/chisato.info.xml
-tests/EUC-KR/console.linuxstudy.pe.kr.xml
-tests/EUC-KR/critique.or.kr.xml
-tests/EUC-KR/epitaph.egloos.com.xml
-tests/EUC-KR/ittrend.egloos.com.xml
-tests/EUC-KR/jely.egloos.com.xml
-tests/EUC-KR/jely.pe.kr.xml
-tests/EUC-KR/jowchung.oolim.net.xml
-tests/EUC-KR/kina.egloos.com.xml
-tests/EUC-KR/lennon81.egloos.com.xml
-tests/EUC-KR/oroll.egloos.com.xml
-tests/EUC-KR/poliplus.egloos.com.xml
-tests/EUC-KR/scarletkh2.egloos.com.xml
-tests/EUC-KR/siwoo.org.xml
-tests/EUC-KR/sparcs.kaist.ac.kr.xml
-tests/EUC-KR/tori02.egloos.com.xml
-tests/EUC-KR/willis.egloos.com.xml
-tests/EUC-KR/xenix.egloos.com.xml
-tests/EUC-KR/yunho.egloos.com.xml
-tests/EUC-KR/zangsalang.egloos.com.xml
-tests/EUC-TW/_ude_euc-tw1.txt
-tests/GB2312/14.blog.westca.com.xml
-tests/GB2312/2.blog.westca.com.xml
-tests/GB2312/_chromium_gb18030_with_no_encoding_specified.html.xml
-tests/GB2312/_mozilla_bug171813_text.html
-tests/GB2312/acnnewswire.net.xml
-tests/GB2312/bbs.blogsome.com.xml
-tests/GB2312/cappuccinos.3322.org.xml
-tests/GB2312/chen56.blogcn.com.xml
-tests/GB2312/cindychen.com.xml
-tests/GB2312/cnblog.org.xml
-tests/GB2312/coverer.com.xml
-tests/GB2312/eighthday.blogspot.com.xml
-tests/GB2312/godthink.blogsome.com.xml
-tests/GB2312/jjgod.3322.org.xml
-tests/GB2312/lily.blogsome.com.xml
-tests/GB2312/luciferwang.blogcn.com.xml
-tests/GB2312/pda.blogsome.com.xml
-tests/GB2312/softsea.net.xml
-tests/GB2312/w3cn.org.xml
-tests/GB2312/xy15400.blogcn.com.xml
-tests/IBM855/_ude_1.txt
-tests/IBM855/aif.ru.health.xml
-tests/IBM855/aug32.hole.ru.xml
-tests/IBM855/aviaport.ru.xml
-tests/IBM855/blog.mlmaster.com.xml
-tests/IBM855/forum.template-toolkit.ru.1.xml
-tests/IBM855/forum.template-toolkit.ru.4.xml
-tests/IBM855/forum.template-toolkit.ru.6.xml
-tests/IBM855/forum.template-toolkit.ru.8.xml
-tests/IBM855/forum.template-toolkit.ru.9.xml
-tests/IBM855/greek.ru.xml
-tests/IBM855/intertat.ru.xml
-tests/IBM855/janulalife.blogspot.com.xml
-tests/IBM855/kapranoff.ru.xml
-tests/IBM855/money.rin.ru.xml
-tests/IBM855/music.peeps.ru.xml
-tests/IBM855/newsru.com.xml
-tests/IBM855/susu.ac.ru.xml
-tests/IBM866/_ude_1.txt
-tests/IBM866/aif.ru.health.xml
-tests/IBM866/aug32.hole.ru.xml
-tests/IBM866/aviaport.ru.xml
-tests/IBM866/blog.mlmaster.com.xml
-tests/IBM866/forum.template-toolkit.ru.1.xml
-tests/IBM866/forum.template-toolkit.ru.4.xml
-tests/IBM866/forum.template-toolkit.ru.6.xml
-tests/IBM866/forum.template-toolkit.ru.8.xml
-tests/IBM866/forum.template-toolkit.ru.9.xml
-tests/IBM866/greek.ru.xml
-tests/IBM866/intertat.ru.xml
-tests/IBM866/janulalife.blogspot.com.xml
-tests/IBM866/kapranoff.ru.xml
-tests/IBM866/money.rin.ru.xml
-tests/IBM866/music.peeps.ru.xml
-tests/IBM866/newsru.com.xml
-tests/IBM866/susu.ac.ru.xml
-tests/KOI8-R/_chromium_KOI8-R_with_no_encoding_specified.html
-tests/KOI8-R/_ude_1.txt
-tests/KOI8-R/aif.ru.health.xml
-tests/KOI8-R/aug32.hole.ru.xml
-tests/KOI8-R/aviaport.ru.xml
-tests/KOI8-R/blog.mlmaster.com.xml
-tests/KOI8-R/forum.template-toolkit.ru.1.xml
-tests/KOI8-R/forum.template-toolkit.ru.4.xml
-tests/KOI8-R/forum.template-toolkit.ru.6.xml
-tests/KOI8-R/forum.template-toolkit.ru.8.xml
-tests/KOI8-R/forum.template-toolkit.ru.9.xml
-tests/KOI8-R/greek.ru.xml
-tests/KOI8-R/intertat.ru.xml
-tests/KOI8-R/janulalife.blogspot.com.xml
-tests/KOI8-R/kapranoff.ru.xml
-tests/KOI8-R/koi.kinder.ru.xml
-tests/KOI8-R/money.rin.ru.xml
-tests/KOI8-R/music.peeps.ru.xml
-tests/KOI8-R/newsru.com.xml
-tests/KOI8-R/susu.ac.ru.xml
-tests/MacCyrillic/_ude_1.txt
-tests/MacCyrillic/aif.ru.health.xml
-tests/MacCyrillic/aug32.hole.ru.xml
-tests/MacCyrillic/aviaport.ru.xml
-tests/MacCyrillic/blog.mlmaster.com.xml
-tests/MacCyrillic/forum.template-toolkit.ru.4.xml
-tests/MacCyrillic/forum.template-toolkit.ru.6.xml
-tests/MacCyrillic/forum.template-toolkit.ru.8.xml
-tests/MacCyrillic/forum.template-toolkit.ru.9.xml
-tests/MacCyrillic/greek.ru.xml
-tests/MacCyrillic/intertat.ru.xml
-tests/MacCyrillic/kapranoff.ru.xml
-tests/MacCyrillic/koi.kinder.ru.xml
-tests/MacCyrillic/money.rin.ru.xml
-tests/MacCyrillic/music.peeps.ru.xml
-tests/MacCyrillic/newsru.com.xml
-tests/MacCyrillic/susu.ac.ru.xml
-tests/SHIFT_JIS/10e.org.xml
-tests/SHIFT_JIS/1affliate.com.xml
-tests/SHIFT_JIS/_chromium_Shift-JIS_with_no_encoding_specified.html
-tests/SHIFT_JIS/_ude_1.txt
-tests/SHIFT_JIS/_ude_2.txt
-tests/SHIFT_JIS/_ude_3.txt
-tests/SHIFT_JIS/_ude_4.txt
-tests/SHIFT_JIS/accessories-brand.com.xml
-tests/SHIFT_JIS/amefoot.net.xml
-tests/SHIFT_JIS/andore.com.inami.xml
-tests/SHIFT_JIS/andore.com.money.xml
-tests/SHIFT_JIS/andore.com.xml
-tests/SHIFT_JIS/blog.inkase.net.xml
-tests/SHIFT_JIS/blog.paseri.ne.jp.xml
-tests/SHIFT_JIS/bloglelife.com.xml
-tests/SHIFT_JIS/brag.zaka.to.xml
-tests/SHIFT_JIS/celeb.lalalu.com.xml
-tests/SHIFT_JIS/clickablewords.com.xml
-tests/SHIFT_JIS/do.beginnersrack.com.xml
-tests/SHIFT_JIS/dogsinn.jp.xml
-tests/SHIFT_JIS/grebeweb.net.xml
-tests/SHIFT_JIS/milliontimes.jp.xml
-tests/SHIFT_JIS/moon-light.ne.jp.xml
-tests/SHIFT_JIS/nextbeaut.com.xml
-tests/SHIFT_JIS/ooganemochi.com.xml
-tests/SHIFT_JIS/perth-on.net.xml
-tests/SHIFT_JIS/sakusaka-silk.net.xml
-tests/SHIFT_JIS/setsuzei119.jp.xml
-tests/SHIFT_JIS/tamuyou.haun.org.xml
-tests/SHIFT_JIS/yasuhisa.com.xml
-tests/TIS-620/_mozilla_bug488426_text.html
-tests/TIS-620/opentle.org.xml
-tests/TIS-620/pharmacy.kku.ac.th.analyse1.xml
-tests/TIS-620/pharmacy.kku.ac.th.centerlab.xml
-tests/TIS-620/pharmacy.kku.ac.th.healthinfo-ne.xml
-tests/TIS-620/trickspot.boxchart.com.xml
-tests/UTF-16/bom-utf-16-be.srt
-tests/UTF-16/bom-utf-16-le.srt
-tests/UTF-32/bom-utf-32-be.srt
-tests/UTF-32/bom-utf-32-le.srt
-tests/__pycache__/__init__.cpython-35.pyc
-tests/__pycache__/test_chardet.cpython-35-PYTEST.pyc
-tests/ascii/_chromium_iso-8859-1_with_no_encoding_specified.html
-tests/ascii/_mozilla_bug638318_text.html
-tests/ascii/howto.diveintomark.org.xml
-tests/iso-2022-jp/_ude_1.txt
-tests/iso-2022-kr/_ude_iso1.txt
-tests/iso-2022-kr/_ude_iso2.txt
-tests/iso-8859-1/_ude_1.txt
-tests/iso-8859-1/_ude_2.txt
-tests/iso-8859-1/_ude_3.txt
-tests/iso-8859-1/_ude_4.txt
-tests/iso-8859-1/_ude_5.txt
-tests/iso-8859-1/_ude_6.txt
-tests/iso-8859-2-hungarian/auto-apro.hu.xml
-tests/iso-8859-2-hungarian/cigartower.hu.xml
-tests/iso-8859-2-hungarian/escience.hu.xml
-tests/iso-8859-2-hungarian/hirtv.hu.xml
-tests/iso-8859-2-hungarian/honositomuhely.hu.xml
-tests/iso-8859-2-hungarian/saraspatak.hu.xml
-tests/iso-8859-2-hungarian/shamalt.uw.hu.mk.xml
-tests/iso-8859-2-hungarian/shamalt.uw.hu.mr.xml
-tests/iso-8859-2-hungarian/shamalt.uw.hu.mv.xml
-tests/iso-8859-2-hungarian/shamalt.uw.hu.xml
-tests/iso-8859-2-hungarian/ugyanmar.blogspot.com.xml
-tests/iso-8859-5-bulgarian/aero-bg.com.xml
-tests/iso-8859-5-bulgarian/bbc.co.uk.popshow.xml
-tests/iso-8859-5-bulgarian/bpm.cult.bg.2.xml
-tests/iso-8859-5-bulgarian/bpm.cult.bg.4.xml
-tests/iso-8859-5-bulgarian/bpm.cult.bg.9.xml
-tests/iso-8859-5-bulgarian/bpm.cult.bg.medusa.4.xml
-tests/iso-8859-5-bulgarian/bpm.cult.bg.xml
-tests/iso-8859-5-bulgarian/debian.gabrovo.com.news.xml
-tests/iso-8859-5-bulgarian/debian.gabrovo.com.xml
-tests/iso-8859-5-bulgarian/doncho.net.comments.xml
-tests/iso-8859-5-bulgarian/ecloga.cult.bg.xml
-tests/iso-8859-5-bulgarian/ide.li.xml
-tests/iso-8859-5-bulgarian/linux-bg.org.xml
-tests/iso-8859-5-cyrillic/_chromium_ISO-8859-5_with_no_encoding_specified.html
-tests/iso-8859-5-cyrillic/aif.ru.health.xml
-tests/iso-8859-5-cyrillic/aug32.hole.ru.xml
-tests/iso-8859-5-cyrillic/aviaport.ru.xml
-tests/iso-8859-5-cyrillic/blog.mlmaster.com.xml
-tests/iso-8859-5-cyrillic/forum.template-toolkit.ru.1.xml
-tests/iso-8859-5-cyrillic/forum.template-toolkit.ru.4.xml
-tests/iso-8859-5-cyrillic/forum.template-toolkit.ru.6.xml
-tests/iso-8859-5-cyrillic/forum.template-toolkit.ru.8.xml
-tests/iso-8859-5-cyrillic/forum.template-toolkit.ru.9.xml
-tests/iso-8859-5-cyrillic/greek.ru.xml
-tests/iso-8859-5-cyrillic/intertat.ru.xml
-tests/iso-8859-5-cyrillic/janulalife.blogspot.com.xml
-tests/iso-8859-5-cyrillic/kapranoff.ru.xml
-tests/iso-8859-5-cyrillic/money.rin.ru.xml
-tests/iso-8859-5-cyrillic/music.peeps.ru.xml
-tests/iso-8859-5-cyrillic/newsru.com.xml
-tests/iso-8859-5-cyrillic/susu.ac.ru.xml
-tests/iso-8859-6-arabic/_chromium_ISO-8859-6_with_no_encoding_specified.html
-tests/iso-8859-7-greek/_chromium_ISO-8859-7_with_no_encoding_specified.html
-tests/iso-8859-7-greek/_ude_greek.txt
-tests/iso-8859-7-greek/disabled.gr.xml
-tests/iso-8859-7-greek/hotstation.gr.xml
-tests/iso-8859-7-greek/naftemporiki.gr.bus.xml
-tests/iso-8859-7-greek/naftemporiki.gr.cmm.xml
-tests/iso-8859-7-greek/naftemporiki.gr.fin.xml
-tests/iso-8859-7-greek/naftemporiki.gr.mrk.xml
-tests/iso-8859-7-greek/naftemporiki.gr.mrt.xml
-tests/iso-8859-7-greek/naftemporiki.gr.spo.xml
-tests/iso-8859-7-greek/naftemporiki.gr.wld.xml
-tests/iso-8859-9-turkish/divxplanet.com.xml
-tests/iso-8859-9-turkish/subtitle.srt
-tests/iso-8859-9-turkish/wikitop_tr_ISO-8859-9.txt
-tests/utf-8/_chromium_UTF-8_with_no_encoding_specified.html
-tests/utf-8/_mozilla_bug306272_text.html
-tests/utf-8/_mozilla_bug426271_text-utf-8.html
-tests/utf-8/_ude_1.txt
-tests/utf-8/_ude_2.txt
-tests/utf-8/_ude_3.txt
-tests/utf-8/_ude_5.txt
-tests/utf-8/_ude_greek.txt
-tests/utf-8/_ude_he1.txt
-tests/utf-8/_ude_he2.txt
-tests/utf-8/_ude_he3.txt
-tests/utf-8/_ude_russian.txt
-tests/utf-8/anitabee.blogspot.com.xml
-tests/utf-8/balatonblog.typepad.com.xml
-tests/utf-8/boobooo.blogspot.com.xml
-tests/utf-8/linuxbox.hu.xml
-tests/utf-8/pihgy.hu.xml
-tests/utf-8/weblabor.hu.2.xml
-tests/utf-8/weblabor.hu.xml
-tests/utf-8-sig/_ude_4.txt
-tests/utf-8-sig/bom-utf-8.srt
-tests/windows-1250-hungarian/bbc.co.uk.hu.forum.xml
-tests/windows-1250-hungarian/bbc.co.uk.hu.learningenglish.xml
-tests/windows-1250-hungarian/bbc.co.uk.hu.pressreview.xml
-tests/windows-1250-hungarian/bbc.co.uk.hu.xml
-tests/windows-1250-hungarian/objektivhir.hu.xml
-tests/windows-1250-hungarian/torokorszag.blogspot.com.xml
-tests/windows-1251-bulgarian/bbc.co.uk.popshow.xml
-tests/windows-1251-bulgarian/bpm.cult.bg.2.xml
-tests/windows-1251-bulgarian/bpm.cult.bg.3.xml
-tests/windows-1251-bulgarian/bpm.cult.bg.4.xml
-tests/windows-1251-bulgarian/bpm.cult.bg.9.xml
-tests/windows-1251-bulgarian/bpm.cult.bg.medusa.4.xml
-tests/windows-1251-bulgarian/bpm.cult.bg.xml
-tests/windows-1251-bulgarian/debian.gabrovo.com.news.xml
-tests/windows-1251-bulgarian/debian.gabrovo.com.xml
-tests/windows-1251-bulgarian/doncho.net.comments.xml
-tests/windows-1251-bulgarian/doncho.net.xml
-tests/windows-1251-bulgarian/ecloga.cult.bg.xml
-tests/windows-1251-bulgarian/ide.li.xml
-tests/windows-1251-bulgarian/informator.org.xml
-tests/windows-1251-bulgarian/linux-bg.org.xml
-tests/windows-1251-bulgarian/rinennor.org.xml
-tests/windows-1251-cyrillic/_chromium_windows-1251_with_no_encoding_specified.html
-tests/windows-1251-cyrillic/_ude_1.txt
-tests/windows-1251-cyrillic/aif.ru.health.xml
-tests/windows-1251-cyrillic/anthropology.ru.xml
-tests/windows-1251-cyrillic/aug32.hole.ru.xml
-tests/windows-1251-cyrillic/aviaport.ru.xml
-tests/windows-1251-cyrillic/blog.mlmaster.com.xml
-tests/windows-1251-cyrillic/forum.template-toolkit.ru.1.xml
-tests/windows-1251-cyrillic/forum.template-toolkit.ru.4.xml
-tests/windows-1251-cyrillic/forum.template-toolkit.ru.6.xml
-tests/windows-1251-cyrillic/forum.template-toolkit.ru.8.xml
-tests/windows-1251-cyrillic/forum.template-toolkit.ru.9.xml
-tests/windows-1251-cyrillic/greek.ru.xml
-tests/windows-1251-cyrillic/intertat.ru.xml
-tests/windows-1251-cyrillic/janulalife.blogspot.com.xml
-tests/windows-1251-cyrillic/kapranoff.ru.xml
-tests/windows-1251-cyrillic/money.rin.ru.xml
-tests/windows-1251-cyrillic/music.peeps.ru.xml
-tests/windows-1251-cyrillic/newsru.com.xml
-tests/windows-1252/_mozilla_bug421271_text.html
-tests/windows-1252/github_bug_9.txt
-tests/windows-1254-turkish/_chromium_windows-1254_with_no_encoding_specified.html
-tests/windows-1255-hebrew/_chromium_ISO-8859-8_with_no_encoding_specified.html
-tests/windows-1255-hebrew/_chromium_windows-1255_with_no_encoding_specified.html
-tests/windows-1255-hebrew/_ude_he1.txt
-tests/windows-1255-hebrew/_ude_he2.txt
-tests/windows-1255-hebrew/_ude_he3.txt
-tests/windows-1255-hebrew/carshops.co.il.xml
-tests/windows-1255-hebrew/exego.net.2.xml
-tests/windows-1255-hebrew/hagada.org.il.xml
-tests/windows-1255-hebrew/halemo.net.edoar.xml
-tests/windows-1255-hebrew/hevra.org.il.xml
-tests/windows-1255-hebrew/hydepark.hevre.co.il.7957.xml
-tests/windows-1255-hebrew/info.org.il.xml
-tests/windows-1255-hebrew/infomed.co.il.xml
-tests/windows-1255-hebrew/law.co.il.xml
-tests/windows-1255-hebrew/maakav.org.xml
-tests/windows-1255-hebrew/neviim.net.xml
-tests/windows-1255-hebrew/notes.co.il.50.xml
-tests/windows-1255-hebrew/notes.co.il.6.xml
-tests/windows-1255-hebrew/notes.co.il.7.xml
-tests/windows-1255-hebrew/notes.co.il.8.xml
-tests/windows-1255-hebrew/pcplus.co.il.xml
-tests/windows-1255-hebrew/sharks.co.il.xml
-tests/windows-1255-hebrew/whatsup.org.il.xml
-tests/windows-1256-arabic/_chromium_windows-1256_with_no_encoding_specified.html
\ No newline at end of file
diff --git a/chardet.egg-info/dependency_links.txt b/chardet.egg-info/dependency_links.txt
deleted file mode 100644
index 8b13789..0000000
--- a/chardet.egg-info/dependency_links.txt
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/chardet.egg-info/entry_points.txt b/chardet.egg-info/entry_points.txt
deleted file mode 100644
index a884269..0000000
--- a/chardet.egg-info/entry_points.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-[console_scripts]
-chardetect = chardet.cli.chardetect:main
-
diff --git a/chardet.egg-info/top_level.txt b/chardet.egg-info/top_level.txt
deleted file mode 100644
index 79236f2..0000000
--- a/chardet.egg-info/top_level.txt
+++ /dev/null
@@ -1 +0,0 @@
-chardet
diff --git a/debian/clean b/debian/clean
index f337e69..44b725f 100644
--- a/debian/clean
+++ b/debian/clean
@@ -1 +1,2 @@
+chardet.egg-info/*
 debian/chardet3.1

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



More information about the Python-modules-commits mailing list