├── Modules ├── Logs │ ├── tmp.txt │ └── sniffer │ │ └── sample.txt ├── capture │ └── test.txt ├── build │ ├── pip │ │ ├── pip.egg-info │ │ │ ├── not-zip-safe │ │ │ ├── top_level.txt │ │ │ ├── dependency_links.txt │ │ │ ├── pbr.json │ │ │ ├── requires.txt │ │ │ └── entry_points.txt │ │ ├── pip │ │ │ ├── operations │ │ │ │ └── __init__.py │ │ │ ├── _vendor │ │ │ │ ├── html5lib │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ └── alphabeticalattributes.py │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── trie │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── serializer │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── requests │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── urllib3 │ │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── response.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── certs.py │ │ │ │ ├── distlib │ │ │ │ │ ├── t32.exe │ │ │ │ │ ├── t64.exe │ │ │ │ │ ├── w32.exe │ │ │ │ │ ├── w64.exe │ │ │ │ │ ├── _backport │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── colorama │ │ │ │ │ └── __init__.py │ │ │ │ ├── vendor.txt │ │ │ │ ├── cachecontrol │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── caches │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── wrapper.py │ │ │ │ └── _markerlib │ │ │ │ │ └── __init__.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ └── index.py │ │ │ ├── status_codes.py │ │ │ ├── req │ │ │ │ └── __init__.py │ │ │ └── __main__.py │ │ ├── docs │ │ │ ├── __init__.py │ │ │ ├── news.rst │ │ │ ├── configuration.rst │ │ │ ├── cookbook.rst │ │ │ ├── usage.rst │ │ │ ├── logic.rst │ │ │ ├── reference │ │ │ │ ├── index.rst │ │ │ │ ├── pip_search.rst │ │ │ │ ├── pip_show.rst │ │ │ │ ├── pip_uninstall.rst │ │ │ │ ├── pip_list.rst │ │ │ │ └── pip_freeze.rst │ │ │ └── index.rst │ │ ├── pip-egg-info │ │ │ └── pip.egg-info │ │ │ │ ├── not-zip-safe │ │ │ │ ├── top_level.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── requires.txt │ │ │ │ └── entry_points.txt │ │ ├── build │ │ │ └── lib.linux-i686-2.7 │ │ │ │ └── pip │ │ │ │ ├── operations │ │ │ │ └── __init__.py │ │ │ │ ├── _vendor │ │ │ │ ├── html5lib │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ └── alphabeticalattributes.py │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── trie │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── serializer │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── requests │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── urllib3 │ │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── response.py │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── certs.py │ │ │ │ ├── distlib │ │ │ │ │ ├── t32.exe │ │ │ │ │ ├── t64.exe │ │ │ │ │ ├── w32.exe │ │ │ │ │ ├── w64.exe │ │ │ │ │ ├── _backport │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── colorama │ │ │ │ │ └── __init__.py │ │ │ │ ├── cachecontrol │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── caches │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── wrapper.py │ │ │ │ └── _markerlib │ │ │ │ │ └── __init__.py │ │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ └── index.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── req │ │ │ │ └── __init__.py │ │ │ │ └── __main__.py │ │ ├── setup.cfg │ │ └── MANIFEST.in │ ├── pillow │ │ ├── .gitattributes │ │ ├── Pillow.egg-info │ │ │ ├── zip-safe │ │ │ ├── top_level.txt │ │ │ ├── dependency_links.txt │ │ │ └── pbr.json │ │ ├── pip-egg-info │ │ │ └── Pillow.egg-info │ │ │ │ ├── zip-safe │ │ │ │ ├── top_level.txt │ │ │ │ └── dependency_links.txt │ │ ├── docs │ │ │ ├── requirements.txt │ │ │ ├── _static │ │ │ │ └── .gitignore │ │ │ ├── _templates │ │ │ │ ├── .gitignore │ │ │ │ └── sidebarhelp.html │ │ │ ├── guides.rst │ │ │ ├── releasenotes │ │ │ │ └── index.rst │ │ │ ├── BUILDME │ │ │ ├── handbook │ │ │ │ └── appendices.rst │ │ │ ├── reference │ │ │ │ ├── PSDraw.rst │ │ │ │ ├── ImageMorph.rst │ │ │ │ ├── ImageCms.rst │ │ │ │ ├── ImageTk.rst │ │ │ │ ├── index.rst │ │ │ │ ├── ImageQt.rst │ │ │ │ └── ImagePalette.rst │ │ │ ├── Guardfile │ │ │ └── developer.rst │ │ ├── .landscape.yaml │ │ ├── Tests │ │ │ ├── images │ │ │ │ ├── test.gpl │ │ │ │ ├── iptc.jpg │ │ │ │ ├── lab.tif │ │ │ │ ├── rgb.jpg │ │ │ │ ├── broken.png │ │ │ │ ├── courB08.pbm │ │ │ │ ├── courB08.pil │ │ │ │ ├── flower.jpg │ │ │ │ ├── flower.webp │ │ │ │ ├── flower2.jpg │ │ │ │ ├── hopper.bmp │ │ │ │ ├── hopper.bw │ │ │ │ ├── hopper.dcx │ │ │ │ ├── hopper.fli │ │ │ │ ├── hopper.gif │ │ │ │ ├── hopper.ico │ │ │ │ ├── hopper.im │ │ │ │ ├── hopper.jpg │ │ │ │ ├── hopper.msp │ │ │ │ ├── hopper.png │ │ │ │ ├── hopper.ppm │ │ │ │ ├── hopper.psd │ │ │ │ ├── hopper.ras │ │ │ │ ├── hopper.rgb │ │ │ │ ├── hopper.tar │ │ │ │ ├── hopper.tif │ │ │ │ ├── hopper.webp │ │ │ │ ├── iss634.gif │ │ │ │ ├── l_trns.png │ │ │ │ ├── lab-red.tif │ │ │ │ ├── morph_a.png │ │ │ │ ├── pil123p.png │ │ │ │ ├── pil136.tiff │ │ │ │ ├── pil168.tif │ │ │ │ ├── pil184.pcx │ │ │ │ ├── pillow.icns │ │ │ │ ├── pillow.ico │ │ │ │ ├── python.ico │ │ │ │ ├── zero_bb.png │ │ │ │ ├── 12in16bit.tif │ │ │ │ ├── flower2.webp │ │ │ │ ├── hopper.spider │ │ │ │ ├── hopper_g4.tif │ │ │ │ ├── lab-green.tif │ │ │ │ ├── pillow2.icns │ │ │ │ ├── pillow3.icns │ │ │ │ ├── pport_g4.tif │ │ │ │ ├── rgb_trns.png │ │ │ │ ├── test-card.png │ │ │ │ ├── bmp │ │ │ │ │ ├── b │ │ │ │ │ │ ├── badrle.bmp │ │ │ │ │ │ ├── baddens1.bmp │ │ │ │ │ │ ├── baddens2.bmp │ │ │ │ │ │ ├── badwidth.bmp │ │ │ │ │ │ ├── badbitcount.bmp │ │ │ │ │ │ ├── badbitssize.bmp │ │ │ │ │ │ ├── badfilesize.bmp │ │ │ │ │ │ ├── badplanes.bmp │ │ │ │ │ │ ├── reallybig.bmp │ │ │ │ │ │ ├── rletopdown.bmp │ │ │ │ │ │ ├── shortfile.bmp │ │ │ │ │ │ ├── badheadersize.bmp │ │ │ │ │ │ ├── pal8badindex.bmp │ │ │ │ │ │ └── badpalettesize.bmp │ │ │ │ │ ├── g │ │ │ │ │ │ ├── pal1.bmp │ │ │ │ │ │ ├── pal1bg.bmp │ │ │ │ │ │ ├── pal1wb.bmp │ │ │ │ │ │ ├── pal4.bmp │ │ │ │ │ │ ├── pal8-0.bmp │ │ │ │ │ │ ├── pal8.bmp │ │ │ │ │ │ ├── pal8v4.bmp │ │ │ │ │ │ ├── pal8v5.bmp │ │ │ │ │ │ ├── rgb16.bmp │ │ │ │ │ │ ├── rgb24.bmp │ │ │ │ │ │ ├── rgb32.bmp │ │ │ │ │ │ ├── pal4rle.bmp │ │ │ │ │ │ ├── pal8os2.bmp │ │ │ │ │ │ ├── pal8rle.bmp │ │ │ │ │ │ ├── pal8w124.bmp │ │ │ │ │ │ ├── pal8w125.bmp │ │ │ │ │ │ ├── pal8w126.bmp │ │ │ │ │ │ ├── rgb24pal.bmp │ │ │ │ │ │ ├── rgb32bf.bmp │ │ │ │ │ │ ├── pal8topdown.bmp │ │ │ │ │ │ ├── rgb16-565.bmp │ │ │ │ │ │ ├── pal8nonsquare.bmp │ │ │ │ │ │ └── rgb16-565pal.bmp │ │ │ │ │ ├── q │ │ │ │ │ │ ├── pal1p1.bmp │ │ │ │ │ │ ├── pal2.bmp │ │ │ │ │ │ ├── rgba32.bmp │ │ │ │ │ │ ├── pal8offs.bmp │ │ │ │ │ │ ├── rgb24png.bmp │ │ │ │ │ │ ├── pal4rletrns.bmp │ │ │ │ │ │ ├── pal8os2sp.bmp │ │ │ │ │ │ ├── pal8os2v2.bmp │ │ │ │ │ │ ├── pal8rletrns.bmp │ │ │ │ │ │ ├── rgb24jpeg.bmp │ │ │ │ │ │ ├── rgb24lprof.bmp │ │ │ │ │ │ ├── rgb24prof.bmp │ │ │ │ │ │ ├── rgba16-4444.bmp │ │ │ │ │ │ ├── rgba32abf.bmp │ │ │ │ │ │ ├── pal8os2v2-16.bmp │ │ │ │ │ │ ├── rgb24largepal.bmp │ │ │ │ │ │ ├── rgb32-111110.bmp │ │ │ │ │ │ ├── pal8oversizepal.bmp │ │ │ │ │ │ └── rgb32fakealpha.bmp │ │ │ │ │ ├── html │ │ │ │ │ │ ├── bkgd.png │ │ │ │ │ │ ├── pal1.png │ │ │ │ │ │ ├── pal2.png │ │ │ │ │ │ ├── pal4.png │ │ │ │ │ │ ├── pal8.png │ │ │ │ │ │ ├── rgb16.png │ │ │ │ │ │ ├── rgb24.jpg │ │ │ │ │ │ ├── rgb24.png │ │ │ │ │ │ ├── pal1bg.png │ │ │ │ │ │ ├── pal1p1.png │ │ │ │ │ │ ├── pal8w124.png │ │ │ │ │ │ ├── pal8w125.png │ │ │ │ │ │ ├── pal8w126.png │ │ │ │ │ │ ├── rgba32.png │ │ │ │ │ │ ├── fakealpha.png │ │ │ │ │ │ ├── rgb16-231.png │ │ │ │ │ │ ├── rgb16-565.png │ │ │ │ │ │ ├── pal4rletrns-0.png │ │ │ │ │ │ ├── pal4rletrns-b.png │ │ │ │ │ │ ├── pal4rletrns.png │ │ │ │ │ │ ├── pal8rletrns-0.png │ │ │ │ │ │ ├── pal8rletrns-b.png │ │ │ │ │ │ ├── pal8rletrns.png │ │ │ │ │ │ ├── rgba16-4444.png │ │ │ │ │ │ ├── pal8nonsquare-e.png │ │ │ │ │ │ └── pal8nonsquare-v.png │ │ │ │ │ └── README.txt │ │ │ │ ├── color_snakes.png │ │ │ │ ├── deerstalker.cur │ │ │ │ ├── default_font.png │ │ │ │ ├── dispose_bgnd.gif │ │ │ │ ├── dispose_none.gif │ │ │ │ ├── dispose_prev.gif │ │ │ │ ├── frozenpond.mpo │ │ │ │ ├── hopper.Lab.tif │ │ │ │ ├── hopper_gray.jpg │ │ │ │ ├── multipage.tiff │ │ │ │ ├── non_zero_bb.png │ │ │ │ ├── pil123rgba.png │ │ │ │ ├── sugarshack.mpo │ │ │ │ ├── test.colors.gif │ │ │ │ ├── tga_id_field.tga │ │ │ │ ├── transparent.png │ │ │ │ ├── transparent.sgi │ │ │ │ ├── transparent.webp │ │ │ │ ├── 12bit.cropped.tif │ │ │ │ ├── 16_bit_binary.pgm │ │ │ │ ├── 16bit.cropped.j2k │ │ │ │ ├── 16bit.cropped.jp2 │ │ │ │ ├── 16bit.cropped.tif │ │ │ │ ├── 16bit.deflate.tif │ │ │ │ ├── effect_spread.png │ │ │ │ ├── hopper_bw_500.png │ │ │ │ ├── hopper_g4_500.tif │ │ │ │ ├── hopper_merged.psd │ │ │ │ ├── illu10_preview.eps │ │ │ │ ├── imagedraw_arc.png │ │ │ │ ├── imagedraw_line.png │ │ │ │ ├── multiline_text.png │ │ │ │ ├── p_trns_single.png │ │ │ │ ├── pil_sample_rgb.jpg │ │ │ │ ├── rgb_trns_ycbc.j2k │ │ │ │ ├── rgb_trns_ycbc.jp2 │ │ │ │ ├── tRNS_null_1x1.png │ │ │ │ ├── test-ole-file.doc │ │ │ │ ├── zero_bb_scale2.png │ │ │ │ ├── 10ct_32bit_128.tiff │ │ │ │ ├── 16_bit_binary_pgm.png │ │ │ │ ├── 16bit.MM.cropped.tif │ │ │ │ ├── 16bit.MM.deflate.tif │ │ │ │ ├── caption_6_33_22.png │ │ │ │ ├── effect_mandelbrot.png │ │ │ │ ├── g4-fillorder-test.png │ │ │ │ ├── g4-fillorder-test.tif │ │ │ │ ├── high_ascii_chars.png │ │ │ │ ├── hopper_bad_exif.jpg │ │ │ │ ├── hopper_gray_4bpp.tif │ │ │ │ ├── hopper_webp_bits.ppm │ │ │ │ ├── hopper_webp_write.ppm │ │ │ │ ├── icc_profile_none.png │ │ │ │ ├── illuCS6_preview.eps │ │ │ │ ├── imagedraw │ │ │ │ │ ├── square.png │ │ │ │ │ ├── triangle_right.png │ │ │ │ │ ├── line_vertical_w3px.png │ │ │ │ │ ├── line_horizontal_w101px.png │ │ │ │ │ ├── line_horizontal_w3px.png │ │ │ │ │ ├── line_oblique_45_w3px_a.png │ │ │ │ │ ├── line_oblique_45_w3px_b.png │ │ │ │ │ ├── line_vertical_w101px.png │ │ │ │ │ ├── line_horizontal_w2px_normal.png │ │ │ │ │ ├── line_vertical_slope1px_w2px.png │ │ │ │ │ ├── line_vertical_w2px_inverted.png │ │ │ │ │ ├── line_vertical_w2px_normal.png │ │ │ │ │ ├── line_horizontal_slope1px_w2px.png │ │ │ │ │ └── line_horizontal_w2px_inverted.png │ │ │ │ ├── imagedraw_bitmap.png │ │ │ │ ├── imagedraw_chord.png │ │ │ │ ├── imagedraw_ellipse.png │ │ │ │ ├── imagedraw_point.png │ │ │ │ ├── imagedraw_polygon.png │ │ │ │ ├── junk_jpeg_header.jpg │ │ │ │ ├── pil_sample_cmyk.jpg │ │ │ │ ├── pngtest_bad.png.bin │ │ │ │ ├── total-pages-zero.tif │ │ │ │ ├── binary_preview_map.eps │ │ │ │ ├── imagedraw_floodfill.png │ │ │ │ ├── imagedraw_pieslice.png │ │ │ │ ├── imagedraw_rectangle.png │ │ │ │ ├── multipage-lastframe.tif │ │ │ │ ├── non_zero_bb_scale2.png │ │ │ │ ├── test-card-lossless.jp2 │ │ │ │ ├── tiff_adobe_deflate.tif │ │ │ │ ├── imagedraw_ellipse_edge.png │ │ │ │ ├── imagedraw_floodfill2.png │ │ │ │ ├── multiline_text_center.png │ │ │ │ ├── multiline_text_right.png │ │ │ │ ├── multiline_text_spacing.png │ │ │ │ ├── png_decompression_dos.png │ │ │ │ ├── test-card-lossy-tiled.jp2 │ │ │ │ ├── rectangle_surrounding_text.png │ │ │ │ ├── bad_palette_entry.gpl │ │ │ │ ├── custom_gimp_palette.gpl │ │ │ │ ├── bad_palette_file.gpl │ │ │ │ ├── gimp_gradient.ggr │ │ │ │ ├── gimp_gradient_with_name.ggr │ │ │ │ ├── corner.lut │ │ │ │ ├── edge.lut │ │ │ │ ├── erosion4.lut │ │ │ │ ├── erosion8.lut │ │ │ │ ├── dilation4.lut │ │ │ │ └── dilation8.lut │ │ │ ├── fonts │ │ │ │ ├── FreeMono.ttf │ │ │ │ ├── helvO18.pcf │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ └── DejaVuSans-bitmap.ttf │ │ │ ├── icc │ │ │ │ ├── sRGB_v4_ICC_preference.icc │ │ │ │ └── sRGB_IEC61966-2-1_black_scaled.icc │ │ │ ├── 32bit_segfault_check.py │ │ │ ├── test_image_tobytes.py │ │ │ ├── test_imageshow.py │ │ │ ├── test_imagetk.py │ │ │ ├── crash_ttf_memory_error.py │ │ │ ├── check_icns_dos.py │ │ │ ├── import_all.py │ │ │ ├── test_image_frombytes.py │ │ │ ├── test_image_getim.py │ │ │ ├── check_j2k_dos.py │ │ │ ├── bench_get.py │ │ │ ├── test_file_tga.py │ │ │ ├── test_image_copy.py │ │ │ ├── test_file_sun.py │ │ │ ├── versions.py │ │ │ ├── test_font_bdf.py │ │ │ ├── test_image_tobitmap.py │ │ │ ├── show_icc.py │ │ │ ├── show_mcidas.py │ │ │ ├── test_image_rotate.py │ │ │ └── test_image_offset.py │ │ ├── winbuild │ │ │ ├── .gitignore │ │ │ ├── unzip.py │ │ │ ├── untar.py │ │ │ ├── fixproj.py │ │ │ ├── fetch.py │ │ │ └── get_pythons.py │ │ ├── setup.cfg │ │ ├── Scripts │ │ │ ├── diffcover-run.sh │ │ │ ├── diffcover-install.sh │ │ │ ├── createfontdatachunk.py │ │ │ └── gifmaker.py │ │ ├── requirements.txt │ │ ├── depends │ │ │ ├── README.rst │ │ │ ├── install_webp.sh │ │ │ └── install_openjpeg.sh │ │ ├── libImaging │ │ │ ├── Raw.h │ │ │ ├── QuantOctree.h │ │ │ ├── QuantTypes.h │ │ │ ├── Bit.h │ │ │ └── QuantHeap.h │ │ ├── .coveragerc │ │ ├── build_children.sh │ │ ├── tox.ini │ │ ├── PIL │ │ │ └── _util.py │ │ └── build │ │ │ └── lib.linux-i686-2.7 │ │ │ └── PIL │ │ │ └── _util.py │ ├── reportlab │ │ ├── docs │ │ │ ├── source │ │ │ │ ├── _static │ │ │ │ │ └── basic.css │ │ │ │ ├── _templates │ │ │ │ │ └── layout.html │ │ │ │ └── pdfgen.rst │ │ │ ├── images │ │ │ │ ├── jpn.gif │ │ │ │ ├── lj8100.jpg │ │ │ │ ├── replogo.gif │ │ │ │ ├── testimg.gif │ │ │ │ ├── Edit_Prefs.gif │ │ │ │ ├── Python_21.gif │ │ │ │ ├── jpnchars.jpg │ │ │ │ ├── redsquare.png │ │ │ │ ├── fileExchange.gif │ │ │ │ └── Python_21_HINT.gif │ │ │ ├── userguide │ │ │ │ ├── testfile.txt │ │ │ │ └── graph_intro.py │ │ │ ├── reference │ │ │ │ └── build.bat │ │ │ ├── gen_epydoc │ │ │ └── 00readme.txt │ │ ├── src │ │ │ ├── reportlab.egg-info │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── top_level.txt │ │ │ │ ├── requires.txt │ │ │ │ └── PKG-INFO │ │ │ ├── reportlab │ │ │ │ ├── graphics │ │ │ │ │ ├── barcode │ │ │ │ │ │ └── VERSION │ │ │ │ │ ├── samples │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── charts │ │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── widgets │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── fonts │ │ │ │ │ ├── Vera.ttf │ │ │ │ │ ├── VeraBI.ttf │ │ │ │ │ ├── VeraBd.ttf │ │ │ │ │ ├── VeraIt.ttf │ │ │ │ │ ├── _a______.pfb │ │ │ │ │ ├── _ab_____.pfb │ │ │ │ │ ├── _abi____.pfb │ │ │ │ │ ├── _ai_____.pfb │ │ │ │ │ ├── _eb_____.pfb │ │ │ │ │ ├── _ebi____.pfb │ │ │ │ │ ├── _ei_____.pfb │ │ │ │ │ ├── _er_____.pfb │ │ │ │ │ ├── cob_____.pfb │ │ │ │ │ ├── cobo____.pfb │ │ │ │ │ ├── com_____.pfb │ │ │ │ │ ├── coo_____.pfb │ │ │ │ │ ├── sy______.pfb │ │ │ │ │ ├── zd______.pfb │ │ │ │ │ ├── zx______.pfb │ │ │ │ │ ├── zy______.pfb │ │ │ │ │ ├── DarkGardenMK.pfb │ │ │ │ │ ├── 00readme.txt │ │ │ │ │ └── DarkGarden-changelog.txt │ │ │ │ ├── MANIFEST.in │ │ │ │ ├── lib │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── enums.py │ │ │ │ ├── pdfgen │ │ │ │ │ └── __init__.py │ │ │ │ └── pdfbase │ │ │ │ │ └── __init__.py │ │ │ └── rl_addons │ │ │ │ ├── renderPM │ │ │ │ ├── libart_lgpl │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── acconfig.h │ │ │ │ │ ├── NEWS │ │ │ │ │ ├── libartConf.sh.in │ │ │ │ │ ├── libart-2.0.pc.in │ │ │ │ │ ├── art_config.h │ │ │ │ │ ├── libart-features.c │ │ │ │ │ ├── README.CVS │ │ │ │ │ ├── libart-features.h.in │ │ │ │ │ ├── README │ │ │ │ │ └── config.h │ │ │ │ ├── gt1 │ │ │ │ │ └── gt1-region.h │ │ │ │ └── tr.py │ │ │ │ ├── README │ │ │ │ └── rl_accel │ │ │ │ ├── README.extensions │ │ │ │ └── tests │ │ │ │ └── getrc.py │ │ ├── pip-egg-info │ │ │ └── reportlab.egg-info │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── top_level.txt │ │ │ │ ├── requires.txt │ │ │ │ └── PKG-INFO │ │ ├── INSTALL.txt │ │ ├── VERSION.txt │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── tall_red.png │ │ │ ├── alpha_test.png │ │ │ ├── test-cross.tiff │ │ │ ├── test-rgba.png │ │ │ ├── pythonpowered.gif │ │ │ ├── test-indexed.png │ │ │ ├── pythonpowered-gs.gif │ │ │ ├── solid_red_alpha.png │ │ │ └── unimportable.py │ │ ├── build │ │ │ └── lib.linux-i686-2.7 │ │ │ │ └── reportlab │ │ │ │ ├── graphics │ │ │ │ ├── samples │ │ │ │ │ └── __init__.py │ │ │ │ ├── charts │ │ │ │ │ └── __init__.py │ │ │ │ ├── widgets │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ │ ├── fonts │ │ │ │ ├── Vera.ttf │ │ │ │ ├── VeraBI.ttf │ │ │ │ ├── VeraBd.ttf │ │ │ │ ├── VeraIt.ttf │ │ │ │ ├── _a______.pfb │ │ │ │ ├── _ab_____.pfb │ │ │ │ ├── _abi____.pfb │ │ │ │ ├── _ai_____.pfb │ │ │ │ ├── _eb_____.pfb │ │ │ │ ├── _ebi____.pfb │ │ │ │ ├── _ei_____.pfb │ │ │ │ ├── _er_____.pfb │ │ │ │ ├── cob_____.pfb │ │ │ │ ├── cobo____.pfb │ │ │ │ ├── com_____.pfb │ │ │ │ ├── coo_____.pfb │ │ │ │ ├── sy______.pfb │ │ │ │ ├── zd______.pfb │ │ │ │ ├── zx______.pfb │ │ │ │ ├── zy______.pfb │ │ │ │ ├── DarkGardenMK.pfb │ │ │ │ └── 00readme.txt │ │ │ │ ├── lib │ │ │ │ ├── __init__.py │ │ │ │ └── enums.py │ │ │ │ ├── pdfgen │ │ │ │ └── __init__.py │ │ │ │ └── pdfbase │ │ │ │ └── __init__.py │ │ ├── demos │ │ │ ├── gadflypaper │ │ │ │ └── 00readme.txt │ │ │ ├── stdfonts │ │ │ │ └── 00readme.txt │ │ │ └── tests │ │ │ │ └── testdemos.py │ │ ├── tools │ │ │ ├── pythonpoint │ │ │ │ ├── demos │ │ │ │ │ ├── leftlogo.gif │ │ │ │ │ ├── lj8100.jpg │ │ │ │ │ ├── outline.gif │ │ │ │ │ ├── pplogo.gif │ │ │ │ │ ├── python.gif │ │ │ │ │ ├── spectrum.png │ │ │ │ │ └── vertpython.gif │ │ │ │ ├── __init__.py │ │ │ │ └── styles │ │ │ │ │ └── __init__.py │ │ │ ├── __init__.py │ │ │ ├── docco │ │ │ │ ├── __init__.py │ │ │ │ └── README │ │ │ └── README │ │ ├── setup.cfg │ │ └── PKG-INFO │ └── lib.linux-i686-2.7 │ │ └── graphviz │ │ └── __init__.py ├── graphviz │ └── __init__.py ├── airgraph-ng │ ├── graphviz │ │ └── __init__.py │ ├── build │ │ ├── lib.linux-i686-2.7 │ │ │ └── graphviz │ │ │ │ └── __init__.py │ │ └── lib.linux-x86_64-2.7 │ │ │ └── graphviz │ │ │ └── __init__.py │ ├── lib │ │ └── Makefile │ ├── man │ │ ├── Makefile │ │ └── dump-join.1 │ ├── Makefile │ └── setup.py ├── lib │ └── Makefile └── man │ ├── Makefile │ └── dump-join.1 └── Scripts ├── __init__.py ├── MiTM_data.txt ├── checkme.txt ├── dbconnect.conf ├── dependency_check.cnf ├── hostapd-evil.conf ├── hostapd-freenet.conf ├── infernal-hostapd.conf ├── hostapd-freenetwpa2.conf ├── install_freeradius.sh ├── Makefile ├── redirecthandle.py └── setup.py /Modules/Logs/tmp.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/capture/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/MiTM_data.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Modules/Logs/sniffer/sample.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/checkme.txt: -------------------------------------------------------------------------------- 1 | handshake 2 | -------------------------------------------------------------------------------- /Scripts/dbconnect.conf: -------------------------------------------------------------------------------- 1 | root 2 | 3 | -------------------------------------------------------------------------------- /Scripts/dependency_check.cnf: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /Modules/build/pip/pip.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/build/pillow/.gitattributes: -------------------------------------------------------------------------------- 1 | *.ppm binary 2 | -------------------------------------------------------------------------------- /Modules/build/pillow/Pillow.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Modules/build/pip/docs/__init__.py: -------------------------------------------------------------------------------- 1 | # docs module 2 | -------------------------------------------------------------------------------- /Modules/build/pip/pip.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/source/_static/basic.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/build/pillow/Pillow.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PIL 2 | -------------------------------------------------------------------------------- /Modules/build/pip/pip.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/build/pillow/Pillow.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Modules/build/pillow/pip-egg-info/Pillow.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Modules/build/pip/pip-egg-info/pip.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/build/pip/pip-egg-info/pip.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Modules/build/pillow/pip-egg-info/Pillow.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PIL 2 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/build/pip/pip-egg-info/pip.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/graphics/barcode/VERSION: -------------------------------------------------------------------------------- 1 | 0.9 2 | -------------------------------------------------------------------------------- /Modules/graphviz/__init__.py: -------------------------------------------------------------------------------- 1 | __all__=['libDumpParse', 'libOuiParse'] 2 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | Sphinx 2 | sphinx-rtd-theme 3 | -------------------------------------------------------------------------------- /Modules/build/pillow/pip-egg-info/Pillow.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | reportlab 2 | -------------------------------------------------------------------------------- /Modules/build/pillow/.landscape.yaml: -------------------------------------------------------------------------------- 1 | strictness: medium 2 | test-warnings: yes 3 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/build/reportlab/pip-egg-info/reportlab.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Modules/build/reportlab/pip-egg-info/reportlab.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | reportlab 2 | -------------------------------------------------------------------------------- /Modules/airgraph-ng/graphviz/__init__.py: -------------------------------------------------------------------------------- 1 | __all__=['libDumpParse', 'libOuiParse'] 2 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/build/pip/pip.egg-info/pbr.json: -------------------------------------------------------------------------------- 1 | {"is_release": true, "git_version": "78daccc"} -------------------------------------------------------------------------------- /Modules/build/pillow/Pillow.egg-info/pbr.json: -------------------------------------------------------------------------------- 1 | {"is_release": false, "git_version": "80672b6"} -------------------------------------------------------------------------------- /Modules/build/reportlab/INSTALL.txt: -------------------------------------------------------------------------------- 1 | Please see README.txt for installation instructions. 2 | -------------------------------------------------------------------------------- /Modules/build/lib.linux-i686-2.7/graphviz/__init__.py: -------------------------------------------------------------------------------- 1 | __all__=['libDumpParse', 'libOuiParse'] 2 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/test.gpl: -------------------------------------------------------------------------------- 1 | GIMP Palette 2 | Name: Test 3 | Columns: 0 4 | # 5 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/renderPM/libart_lgpl/AUTHORS: -------------------------------------------------------------------------------- 1 | Raph Levien 2 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modules/build/pillow/winbuild/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | *.tar.gz 3 | *.msi 4 | *.asc 5 | __pycache__ 6 | depends/ -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | pillow>=2.4.0 2 | pip>=1.4.1 3 | setuptools>=2.2 -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/renderPM/libart_lgpl/acconfig.h: -------------------------------------------------------------------------------- 1 | #undef PACKAGE 2 | #undef VERSION 3 | -------------------------------------------------------------------------------- /Modules/airgraph-ng/build/lib.linux-i686-2.7/graphviz/__init__.py: -------------------------------------------------------------------------------- 1 | __all__=['libDumpParse', 'libOuiParse'] 2 | -------------------------------------------------------------------------------- /Modules/airgraph-ng/build/lib.linux-x86_64-2.7/graphviz/__init__.py: -------------------------------------------------------------------------------- 1 | __all__=['libDumpParse', 'libOuiParse'] 2 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/_static/.gitignore: -------------------------------------------------------------------------------- 1 | # Empty file, to make the directory available in the repository 2 | -------------------------------------------------------------------------------- /Modules/build/pillow/setup.cfg: -------------------------------------------------------------------------------- 1 | [egg_info] 2 | tag_build = 3 | tag_date = 0 4 | tag_svn_revision = 0 5 | 6 | -------------------------------------------------------------------------------- /Modules/build/reportlab/VERSION.txt: -------------------------------------------------------------------------------- 1 | The "master version number" lives in src/reportlab/__init__.py. Sorry! 2 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/_templates/.gitignore: -------------------------------------------------------------------------------- 1 | # Empty file, to make the directory available in the repository 2 | -------------------------------------------------------------------------------- /Modules/build/reportlab/pip-egg-info/reportlab.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | pillow>=2.4.0 2 | pip>=1.4.1 3 | setuptools>=2.2 -------------------------------------------------------------------------------- /Scripts/hostapd-evil.conf: -------------------------------------------------------------------------------- 1 | interface=wlan2 2 | driver=nl80211 3 | ssid=donttry 4 | channel=1 5 | #enable_karma=1 6 | -------------------------------------------------------------------------------- /Modules/build/pip/docs/news.rst: -------------------------------------------------------------------------------- 1 | ============= 2 | Release Notes 3 | ============= 4 | 5 | .. include:: ../CHANGES.txt 6 | -------------------------------------------------------------------------------- /Modules/build/pip/pip.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | [testing] 4 | pytest 5 | virtualenv>=1.10 6 | scripttest>=1.3 7 | mock -------------------------------------------------------------------------------- /Scripts/hostapd-freenet.conf: -------------------------------------------------------------------------------- 1 | interface=wlan0 2 | driver=nl80211 3 | ssid=abc10.com 4 | channel=1 5 | #enable_karma=1 6 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/models/__init__.py: -------------------------------------------------------------------------------- 1 | from pip.models.index import Index, PyPI 2 | 3 | 4 | __all__ = ["Index", "PyPI"] 5 | -------------------------------------------------------------------------------- /Scripts/infernal-hostapd.conf: -------------------------------------------------------------------------------- 1 | interface=wlan0 2 | driver=nl80211 3 | ssid=entropy_test 4 | channel=1 5 | #enable_karma=1 6 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/requests/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import urllib3 4 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/renderPM/libart_lgpl/NEWS: -------------------------------------------------------------------------------- 1 | Please see http://www.levien.com/libart/ for the latest news. 2 | -------------------------------------------------------------------------------- /Modules/build/reportlab/tests/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/iptc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/iptc.jpg -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/lab.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/lab.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/rgb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/rgb.jpg -------------------------------------------------------------------------------- /Modules/build/pip/pip-egg-info/pip.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | [testing] 4 | pytest 5 | virtualenv>=1.10 6 | scripttest>=1.3 7 | mock -------------------------------------------------------------------------------- /Modules/build/pip/pip.egg-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip:main 3 | pip2.7 = pip:main 4 | pip2 = pip:main 5 | 6 | -------------------------------------------------------------------------------- /Modules/build/reportlab/tests/tall_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tests/tall_red.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/fonts/FreeMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/fonts/FreeMono.ttf -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/fonts/helvO18.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/fonts/helvO18.pcf -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/broken.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/courB08.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/courB08.pbm -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/courB08.pil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/courB08.pil -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/flower.jpg -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/flower.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/flower.webp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/flower2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/flower2.jpg -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.bw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.bw -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.dcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.dcx -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.fli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.fli -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.gif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.ico -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.im: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.im -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.jpg -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.msp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.msp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.ppm -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.psd -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.ras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.ras -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.rgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.rgb -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.tar -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.webp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/iss634.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/iss634.gif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/l_trns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/l_trns.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/lab-red.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/lab-red.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/morph_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/morph_a.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/pil123p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/pil123p.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/pil136.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/pil136.tiff -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/pil168.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/pil168.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/pil184.pcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/pil184.pcx -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/pillow.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/pillow.icns -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/pillow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/pillow.ico -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/python.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/python.ico -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/zero_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/zero_bb.png -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pip/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pip/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pip/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pip/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/images/jpn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/docs/images/jpn.gif -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/graphics/samples/__init__.py: -------------------------------------------------------------------------------- 1 | __doc__="""Example drawings to review, used in autogenerated docs""" 2 | -------------------------------------------------------------------------------- /Modules/build/reportlab/tests/alpha_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tests/alpha_test.png -------------------------------------------------------------------------------- /Modules/build/reportlab/tests/test-cross.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tests/test-cross.tiff -------------------------------------------------------------------------------- /Modules/build/reportlab/tests/test-rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tests/test-rgba.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/12in16bit.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/12in16bit.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/flower2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/flower2.webp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.spider: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.spider -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper_g4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper_g4.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/lab-green.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/lab-green.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/pillow2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/pillow2.icns -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/pillow3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/pillow3.icns -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/pport_g4.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/pport_g4.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/rgb_trns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/rgb_trns.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/test-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/test-card.png -------------------------------------------------------------------------------- /Modules/build/pip/pip-egg-info/pip.egg-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip:main 3 | pip2.7 = pip:main 4 | pip2 = pip:main 5 | 6 | -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/images/lj8100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/docs/images/lj8100.jpg -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/images/replogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/docs/images/replogo.gif -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/images/testimg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/docs/images/testimg.gif -------------------------------------------------------------------------------- /Modules/build/reportlab/tests/pythonpowered.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tests/pythonpowered.gif -------------------------------------------------------------------------------- /Modules/build/reportlab/tests/test-indexed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tests/test-indexed.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/badrle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/badrle.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal1.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal1bg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal1bg.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal1wb.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal1wb.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal4.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal8-0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal8-0.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal8.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal8v4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal8v4.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal8v5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal8v5.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/rgb16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/rgb16.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/rgb24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/rgb24.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/rgb32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/rgb32.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/pal1p1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/pal1p1.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/pal2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/pal2.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/rgba32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/rgba32.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/color_snakes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/color_snakes.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/deerstalker.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/deerstalker.cur -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/default_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/default_font.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/dispose_bgnd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/dispose_bgnd.gif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/dispose_none.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/dispose_none.gif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/dispose_prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/dispose_prev.gif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/frozenpond.mpo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/frozenpond.mpo -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper.Lab.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper.Lab.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper_gray.jpg -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/multipage.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/multipage.tiff -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/non_zero_bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/non_zero_bb.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/pil123rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/pil123rgba.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/sugarshack.mpo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/sugarshack.mpo -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/test.colors.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/test.colors.gif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/tga_id_field.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/tga_id_field.tga -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/transparent.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/transparent.sgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/transparent.sgi -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/transparent.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/transparent.webp -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/models/__init__.py: -------------------------------------------------------------------------------- 1 | from pip.models.index import Index, PyPI 2 | 3 | 4 | __all__ = ["Index", "PyPI"] 5 | -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/images/Edit_Prefs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/docs/images/Edit_Prefs.gif -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/images/Python_21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/docs/images/Python_21.gif -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/images/jpnchars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/docs/images/jpnchars.jpg -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/images/redsquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/docs/images/redsquare.png -------------------------------------------------------------------------------- /Modules/build/reportlab/tests/pythonpowered-gs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tests/pythonpowered-gs.gif -------------------------------------------------------------------------------- /Modules/build/reportlab/tests/solid_red_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tests/solid_red_alpha.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/12bit.cropped.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/12bit.cropped.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/16_bit_binary.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/16_bit_binary.pgm -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/16bit.cropped.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/16bit.cropped.j2k -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/16bit.cropped.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/16bit.cropped.jp2 -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/16bit.cropped.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/16bit.cropped.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/16bit.deflate.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/16bit.deflate.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/baddens1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/baddens1.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/baddens2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/baddens2.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/badwidth.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/badwidth.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal4rle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal4rle.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal8os2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal8os2.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal8rle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal8rle.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal8w124.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal8w124.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal8w125.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal8w125.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal8w126.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal8w126.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/rgb24pal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/rgb24pal.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/rgb32bf.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/rgb32bf.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/bkgd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/bkgd.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal1.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal2.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal4.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal8.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/rgb16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/rgb16.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/rgb24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/rgb24.jpg -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/rgb24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/rgb24.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/pal8offs.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/pal8offs.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/rgb24png.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/rgb24png.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/effect_spread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/effect_spread.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper_bw_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper_bw_500.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper_g4_500.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper_g4_500.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper_merged.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper_merged.psd -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/illu10_preview.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/illu10_preview.eps -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw_arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw_arc.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw_line.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/multiline_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/multiline_text.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/p_trns_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/p_trns_single.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/pil_sample_rgb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/pil_sample_rgb.jpg -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/rgb_trns_ycbc.j2k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/rgb_trns_ycbc.j2k -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/rgb_trns_ycbc.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/rgb_trns_ycbc.jp2 -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/tRNS_null_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/tRNS_null_1x1.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/test-ole-file.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/test-ole-file.doc -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/zero_bb_scale2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/zero_bb_scale2.png -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/requests/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import urllib3 4 | -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/images/fileExchange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/docs/images/fileExchange.gif -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/Vera.ttf -------------------------------------------------------------------------------- /Modules/build/pillow/Scripts/diffcover-run.sh: -------------------------------------------------------------------------------- 1 | coverage xml 2 | diff-cover coverage.xml 3 | diff-quality --violation=pyflakes 4 | diff-quality --violation=pep8 5 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/fonts/DejaVuSans-bitmap.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/fonts/DejaVuSans-bitmap.ttf -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/10ct_32bit_128.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/10ct_32bit_128.tiff -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/16_bit_binary_pgm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/16_bit_binary_pgm.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/16bit.MM.cropped.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/16bit.MM.cropped.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/16bit.MM.deflate.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/16bit.MM.deflate.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/badbitcount.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/badbitcount.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/badbitssize.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/badbitssize.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/badfilesize.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/badfilesize.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/badplanes.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/badplanes.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/reallybig.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/reallybig.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/rletopdown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/rletopdown.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/shortfile.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/shortfile.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal8topdown.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal8topdown.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/rgb16-565.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/rgb16-565.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal1bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal1bg.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal1p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal1p1.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal8w124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal8w124.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal8w125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal8w125.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal8w126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal8w126.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/rgba32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/rgba32.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/pal4rletrns.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/pal4rletrns.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/pal8os2sp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/pal8os2sp.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/pal8os2v2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/pal8os2v2.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/pal8rletrns.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/pal8rletrns.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/rgb24jpeg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/rgb24jpeg.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/rgb24lprof.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/rgb24lprof.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/rgb24prof.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/rgb24prof.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/rgba16-4444.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/rgba16-4444.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/rgba32abf.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/rgba32abf.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/caption_6_33_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/caption_6_33_22.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/effect_mandelbrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/effect_mandelbrot.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/g4-fillorder-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/g4-fillorder-test.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/g4-fillorder-test.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/g4-fillorder-test.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/high_ascii_chars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/high_ascii_chars.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper_bad_exif.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper_bad_exif.jpg -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper_gray_4bpp.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper_gray_4bpp.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper_webp_bits.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper_webp_bits.ppm -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/hopper_webp_write.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/hopper_webp_write.ppm -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/icc_profile_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/icc_profile_none.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/illuCS6_preview.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/illuCS6_preview.eps -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/square.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw_bitmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw_bitmap.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw_chord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw_chord.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw_ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw_ellipse.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw_point.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw_polygon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw_polygon.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/junk_jpeg_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/junk_jpeg_header.jpg -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/pil_sample_cmyk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/pil_sample_cmyk.jpg -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/pngtest_bad.png.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/pngtest_bad.png.bin -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/total-pages-zero.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/total-pages-zero.tif -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/graphics/samples/__init__.py: -------------------------------------------------------------------------------- 1 | __doc__="""Example drawings to review, used in autogenerated docs""" 2 | -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/images/Python_21_HINT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/docs/images/Python_21_HINT.gif -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/VeraBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/VeraBI.ttf -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/VeraBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/VeraBd.ttf -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/VeraIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/VeraIt.ttf -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/icc/sRGB_v4_ICC_preference.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/icc/sRGB_v4_ICC_preference.icc -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/binary_preview_map.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/binary_preview_map.eps -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/badheadersize.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/badheadersize.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/pal8badindex.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/pal8badindex.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/pal8nonsquare.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/pal8nonsquare.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/g/rgb16-565pal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/g/rgb16-565pal.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/fakealpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/fakealpha.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/rgb16-231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/rgb16-231.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/rgb16-565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/rgb16-565.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/pal8os2v2-16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/pal8os2v2-16.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/rgb24largepal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/rgb24largepal.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/rgb32-111110.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/rgb32-111110.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw_floodfill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw_floodfill.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw_pieslice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw_pieslice.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw_rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw_rectangle.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/multipage-lastframe.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/multipage-lastframe.tif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/non_zero_bb_scale2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/non_zero_bb_scale2.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/test-card-lossless.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/test-card-lossless.jp2 -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/tiff_adobe_deflate.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/tiff_adobe_deflate.tif -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/requests/packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | -------------------------------------------------------------------------------- /Modules/build/reportlab/demos/gadflypaper/00readme.txt: -------------------------------------------------------------------------------- 1 | This is Aaron Watters' first script; 2 | it renders his paper for IPC8 into 3 | PDF. A fascinating read, as well. -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/userguide/testfile.txt: -------------------------------------------------------------------------------- 1 | Test of ability to create new files in sourceforge CVS, which 2 | seems not to be working. Can be removed any time. -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/_a______.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/_a______.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/_ab_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/_ab_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/_abi____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/_abi____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/_ai_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/_ai_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/_eb_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/_eb_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/_ebi____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/_ebi____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/_ei_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/_ei_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/_er_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/_er_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/cob_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/cob_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/cobo____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/cobo____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/com_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/com_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/coo_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/coo_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/sy______.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/sy______.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/zd______.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/zd______.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/zx______.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/zx______.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/zy______.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/zy______.pfb -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/b/badpalettesize.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/b/badpalettesize.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal4rletrns-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal4rletrns-0.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal4rletrns-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal4rletrns-b.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal4rletrns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal4rletrns.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal8rletrns-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal8rletrns-0.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal8rletrns-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal8rletrns-b.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal8rletrns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal8rletrns.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/rgba16-4444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/rgba16-4444.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/pal8oversizepal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/pal8oversizepal.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/q/rgb32fakealpha.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/q/rgb32fakealpha.bmp -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw_ellipse_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw_ellipse_edge.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw_floodfill2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw_floodfill2.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/multiline_text_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/multiline_text_center.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/multiline_text_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/multiline_text_right.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/multiline_text_spacing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/multiline_text_spacing.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/png_decompression_dos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/png_decompression_dos.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/test-card-lossy-tiled.jp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/test-card-lossy-tiled.jp2 -------------------------------------------------------------------------------- /Modules/build/pip/docs/configuration.rst: -------------------------------------------------------------------------------- 1 | :orphan: 2 | 3 | Configuration 4 | ============= 5 | 6 | This content is now covered in the :doc:`User Guide ` 7 | -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/reference/build.bat: -------------------------------------------------------------------------------- 1 | del reportlab-reference.pdf 2 | python ..\tools\yaml2pdf.py reportlab-reference.yml 3 | start reportlab-reference.pdf 4 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/DarkGardenMK.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/src/reportlab/fonts/DarkGardenMK.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/tools/pythonpoint/demos/leftlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tools/pythonpoint/demos/leftlogo.gif -------------------------------------------------------------------------------- /Modules/build/reportlab/tools/pythonpoint/demos/lj8100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tools/pythonpoint/demos/lj8100.jpg -------------------------------------------------------------------------------- /Modules/build/reportlab/tools/pythonpoint/demos/outline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tools/pythonpoint/demos/outline.gif -------------------------------------------------------------------------------- /Modules/build/reportlab/tools/pythonpoint/demos/pplogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tools/pythonpoint/demos/pplogo.gif -------------------------------------------------------------------------------- /Modules/build/reportlab/tools/pythonpoint/demos/python.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tools/pythonpoint/demos/python.gif -------------------------------------------------------------------------------- /Modules/build/reportlab/tools/pythonpoint/demos/spectrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tools/pythonpoint/demos/spectrum.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal8nonsquare-e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal8nonsquare-e.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/html/pal8nonsquare-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/bmp/html/pal8nonsquare-v.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/triangle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/triangle_right.png -------------------------------------------------------------------------------- /Modules/build/pillow/requirements.txt: -------------------------------------------------------------------------------- 1 | # Testing and documentation requirements 2 | -e . 3 | -r docs/requirements.txt 4 | coveralls 5 | nose 6 | nose-cov 7 | pep8 8 | pyflakes 9 | -------------------------------------------------------------------------------- /Modules/build/pip/docs/cookbook.rst: -------------------------------------------------------------------------------- 1 | :orphan: 2 | 3 | ============ 4 | Cookbook 5 | ============ 6 | 7 | This content is now covered in the :doc:`User Guide ` 8 | -------------------------------------------------------------------------------- /Modules/build/reportlab/tools/pythonpoint/demos/vertpython.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/tools/pythonpoint/demos/vertpython.gif -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/icc/sRGB_IEC61966-2-1_black_scaled.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/icc/sRGB_IEC61966-2-1_black_scaled.icc -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/rectangle_surrounding_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/rectangle_surrounding_text.png -------------------------------------------------------------------------------- /Modules/build/pip/docs/usage.rst: -------------------------------------------------------------------------------- 1 | :orphan: 2 | 3 | ========== 4 | Usage 5 | ========== 6 | 7 | The "Usage" section is now covered in the :doc:`Reference Guide ` 8 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/line_vertical_w3px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/line_vertical_w3px.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/line_horizontal_w101px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/line_horizontal_w101px.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/line_horizontal_w3px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/line_horizontal_w3px.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/line_oblique_45_w3px_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/line_oblique_45_w3px_a.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/line_oblique_45_w3px_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/line_oblique_45_w3px_b.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/line_vertical_w101px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/line_vertical_w101px.png -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/requests/packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bmp/README.txt: -------------------------------------------------------------------------------- 1 | These images are from the bmpsuite: 2 | https://github.com/jsummers/bmpsuite and are in the public domain 3 | according to the readme in the project. 4 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/line_horizontal_w2px_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/line_horizontal_w2px_normal.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/line_vertical_slope1px_w2px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/line_vertical_slope1px_w2px.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/line_vertical_w2px_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/line_vertical_w2px_inverted.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/line_vertical_w2px_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/line_vertical_w2px_normal.png -------------------------------------------------------------------------------- /Modules/build/pillow/depends/README.rst: -------------------------------------------------------------------------------- 1 | Depends 2 | ======= 3 | 4 | Scripts in this directory can be used to download, build & install non-packaged dependencies; useful for testing with Travis CI. 5 | -------------------------------------------------------------------------------- /Modules/build/pip/docs/logic.rst: -------------------------------------------------------------------------------- 1 | :orphan: 2 | 3 | ================ 4 | Internal Details 5 | ================ 6 | 7 | This content is now covered in the :doc:`Reference Guide ` 8 | 9 | -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/Vera.ttf -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/VeraBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/VeraBI.ttf -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/VeraBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/VeraBd.ttf -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/VeraIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/VeraIt.ttf -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/line_horizontal_slope1px_w2px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/line_horizontal_slope1px_w2px.png -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/imagedraw/line_horizontal_w2px_inverted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/pillow/Tests/images/imagedraw/line_horizontal_w2px_inverted.png -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_a______.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_a______.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_ab_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_ab_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_abi____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_abi____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_ai_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_ai_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_eb_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_eb_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_ebi____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_ebi____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_ei_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_ei_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_er_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/_er_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/cob_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/cob_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/cobo____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/cobo____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/com_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/com_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/coo_____.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/coo_____.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/sy______.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/sy______.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/zd______.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/zd______.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/zx______.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/zx______.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/zy______.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/zy______.pfb -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/gen_epydoc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | d=`dirname $0` 3 | [ x$d = x ] && d=`pwd` 4 | export PYTHONPATH=$d/../src 5 | 6 | epydoc --html reportlab --docformat=restructuredtext --no-private 7 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/32bit_segfault_check.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | from PIL import Image 4 | import sys 5 | 6 | 7 | if sys.maxsize < 2**32: 8 | im = Image.new('L', (999999, 999999), 0) 9 | -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/DarkGardenMK.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/error434/wirehack/HEAD/Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/DarkGardenMK.pfb -------------------------------------------------------------------------------- /Modules/build/pip/pip/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/guides.rst: -------------------------------------------------------------------------------- 1 | Guides 2 | ====== 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | handbook/overview 8 | handbook/tutorial 9 | handbook/concepts 10 | porting-pil-to-pillow 11 | developer 12 | -------------------------------------------------------------------------------- /Modules/build/pip/setup.cfg: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = --ignore pip/_vendor --ignore tests/tests_cache 3 | 4 | [wheel] 5 | universal = 1 6 | 7 | [egg_info] 8 | tag_build = 9 | tag_date = 0 10 | tag_svn_revision = 0 11 | 12 | -------------------------------------------------------------------------------- /Modules/build/reportlab/tools/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/tools/__init__.py 4 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/source/_templates/layout.html: -------------------------------------------------------------------------------- 1 | {% extends "!layout.html" %} 2 | {% block rootrellink %} 3 |
  • ReportLab Homepage »
  • 4 | {{ super() }} 5 | {% endblock %} 6 | 7 | -------------------------------------------------------------------------------- /Modules/build/reportlab/tools/docco/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/tools/docco/__init__.py 4 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/MANIFEST.in: -------------------------------------------------------------------------------- 1 | global-include *.dtd *.txt *.xml *.yml 2 | global-include *.c *.h *.in *.mashed 3 | global-include *.gif *.png *.jpg .a85 4 | global-include *.AFM *.PFB *.ttf 5 | global-include README 6 | include changes 7 | -------------------------------------------------------------------------------- /Modules/build/reportlab/tests/unimportable.py: -------------------------------------------------------------------------------- 1 | #module you cannot import 2 | """ 3 | This is a fixture used for testing a dynamic import function. 4 | 5 | It is supposed to produce an error when imported. 6 | """ 7 | 8 | value = 100 / 0 9 | 10 | 11 | -------------------------------------------------------------------------------- /Modules/build/pillow/winbuild/unzip.py: -------------------------------------------------------------------------------- 1 | import sys 2 | import zipfile 3 | 4 | 5 | def unzip(src, dest): 6 | with zipfile.ZipFile(src) as zf: 7 | zf.extractall(dest) 8 | 9 | if __name__ == '__main__': 10 | unzip(sys.argv[1], sys.argv[2]) 11 | -------------------------------------------------------------------------------- /Modules/build/reportlab/tools/pythonpoint/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/tools/pythonpoint/__init__.py 4 | -------------------------------------------------------------------------------- /Modules/build/pillow/winbuild/untar.py: -------------------------------------------------------------------------------- 1 | import sys 2 | import tarfile 3 | 4 | 5 | def untar(src, dest): 6 | with tarfile.open(src, 'r:gz') as tgz: 7 | tgz.extractall(dest) 8 | 9 | if __name__ == '__main__': 10 | untar(sys.argv[1], sys.argv[2]) 11 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/renderPM/libart_lgpl/libartConf.sh.in: -------------------------------------------------------------------------------- 1 | # 2 | # Configuration file for using the LIBART library in GNOME applications 3 | # 4 | LIBART_LIBDIR="@LIBART_LIBDIR@" 5 | LIBART_LIBS="@LIBART_LIBS@" 6 | LIBART_INCLUDEDIR="@LIBART_INCLUDEDIR@" 7 | -------------------------------------------------------------------------------- /Modules/build/reportlab/tools/pythonpoint/styles/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/tools/pythonpoint/styles/__init__.py 4 | -------------------------------------------------------------------------------- /Modules/build/reportlab/tools/README: -------------------------------------------------------------------------------- 1 | This directory is the home of various ReportLab tools. 2 | They are packaged such that they can be used more easily. 3 | 4 | Tool candidates are: 5 | 6 | - PythonPoint 7 | - docpy.py 8 | - graphdocpy.py 9 | - ... 10 | 11 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/releasenotes/index.rst: -------------------------------------------------------------------------------- 1 | Release Notes 2 | ============= 3 | 4 | .. note:: Contributors please include release notes as needed or appropriate with your bug fixes, feature additions and tests. 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | 2.7.0 10 | 2.8.0 11 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.3.3' 7 | 8 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- 1 | distlib==0.2.1 2 | html5lib==1.0b5 3 | six==1.9.0 4 | colorama==0.3.3 5 | requests==2.7.0 6 | CacheControl==0.11.5 7 | lockfile==0.10.2 8 | progress==1.2 9 | ipaddress==1.0.14 # Only needed on 2.6, 2.7, and 3.2 10 | packaging==15.3 11 | retrying==1.3.3 12 | -------------------------------------------------------------------------------- /Modules/build/reportlab/demos/stdfonts/00readme.txt: -------------------------------------------------------------------------------- 1 | This lists out the standard 14 fonts 2 | in a very plain and simple fashion. 3 | 4 | Notably, the output is huge - it makes 5 | two separate text objects for each glyph. 6 | Smarter programming would make tighter 7 | PDF, but more lines of Python! 8 | -------------------------------------------------------------------------------- /Modules/build/pip/docs/reference/index.rst: -------------------------------------------------------------------------------- 1 | =============== 2 | Reference Guide 3 | =============== 4 | 5 | .. toctree:: 6 | :maxdepth: 2 7 | 8 | pip 9 | pip_install 10 | pip_uninstall 11 | pip_freeze 12 | pip_list 13 | pip_show 14 | pip_search 15 | pip_wheel 16 | 17 | 18 | -------------------------------------------------------------------------------- /Scripts/hostapd-freenetwpa2.conf: -------------------------------------------------------------------------------- 1 | interface=wlan0 2 | bridge=br0 3 | driver=nl80211 4 | country_code=IN 5 | ssid=infernal-wifi12 6 | hw_mode=g 7 | channel=6 8 | wpa=2 9 | wpa_passphrase=myComplexPassword 10 | wpa_key_mgmt=WPA-PSK 11 | wpa_pairwise=TKIP 12 | rsn_pairwise=CCMP 13 | auth_algs=1 14 | macaddr_acl=0 -------------------------------------------------------------------------------- /Modules/build/pillow/docs/BUILDME: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # quick build (for lazy programmers). for more information on the 3 | # build process, see the README file. 4 | 5 | if [ "$1" = "clean" ]; then 6 | python setup.py clean 7 | rm -f *.so PIL/*.so 8 | fi 9 | 10 | python setup.py build_ext -i 11 | python selftest.py 12 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.3.3' 7 | 8 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/html5lib/trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie as PyTrie 4 | 5 | Trie = PyTrie 6 | 7 | try: 8 | from .datrie import Trie as DATrie 9 | except ImportError: 10 | pass 11 | else: 12 | Trie = DATrie 13 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/handbook/appendices.rst: -------------------------------------------------------------------------------- 1 | Appendices 2 | ========== 3 | 4 | .. note:: Contributors please include appendices as needed or appropriate with your bug fixes, feature additions and tests. 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | image-file-formats 10 | writing-your-own-file-decoder 11 | -------------------------------------------------------------------------------- /Modules/build/reportlab/setup.cfg: -------------------------------------------------------------------------------- 1 | #This is normally only used for win32 2 | [FREETYPE_PATHS_WIN32] 3 | lib=c:\ux\xb33\libs\x86\freetype.lib 4 | inc=c:\ux\xb33\include\freetype2 5 | 6 | [FREETYPE_PATHS_AMD64] 7 | lib=c:\ux\xb33\libs\amd64\freetype.lib 8 | inc=c:\ux\xb33\include\freetype2 9 | 10 | [FREETYPE_PATHS] 11 | -------------------------------------------------------------------------------- /Modules/build/pillow/libImaging/Raw.h: -------------------------------------------------------------------------------- 1 | /* Raw.h */ 2 | 3 | typedef struct { 4 | 5 | /* CONFIGURATION */ 6 | 7 | /* Distance between lines (0=no padding) */ 8 | int stride; 9 | 10 | /* PRIVATE (initialized by decoder) */ 11 | 12 | /* Padding between lines */ 13 | int skip; 14 | 15 | } RAWSTATE; 16 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/graphics/charts/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/graphics/charts/__init__.py 4 | __version__=''' $Id$ ''' 5 | __doc__='''Business charts''' 6 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bad_palette_entry.gpl: -------------------------------------------------------------------------------- 1 | GIMP Palette 2 | Name: badpaletteentry 3 | Columns: 4 4 | # 5 | 0 0 0 Index 3 6 | 65 38 7 | 103 62 49 Index 6 8 | 79 73 72 Index 7 9 | 114 101 97 Index 8 10 | 208 127 100 Index 9 11 | 151 144 142 Index 10 12 | 221 207 199 Index 11 13 | -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/source/pdfgen.rst: -------------------------------------------------------------------------------- 1 | =================================== 2 | package reportlab.pdfgen 3 | =================================== 4 | 5 | .. rubric:: The basics 6 | 7 | module reportlab.pdfgen.canvas 8 | ------------------------------ 9 | 10 | .. automodule:: reportlab.pdfgen.canvas 11 | :members: 12 | -------------------------------------------------------------------------------- /Modules/build/pillow/winbuild/fixproj.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | with open(sys.argv[1], 'r') as fd: 4 | content = '\n'.join(line.strip() for line in fd if line.strip()) 5 | if len(sys.argv) == 3: 6 | content = content.replace('Win32', sys.argv[2]).replace('x64', sys.argv[2]) 7 | with open(sys.argv[1], 'w') as fd: 8 | fd.write(content) 9 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/graphics/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/graphics/widgets/__init__.py 4 | __version__=''' $Id$ ''' 5 | __doc__='''Some non-chart widgets''' 6 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/html5lib/trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie as PyTrie 4 | 5 | Trie = PyTrie 6 | 7 | try: 8 | from .datrie import Trie as DATrie 9 | except ImportError: 10 | pass 11 | else: 12 | Trie = DATrie 13 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/custom_gimp_palette.gpl: -------------------------------------------------------------------------------- 1 | GIMP Palette 2 | Name: custompalette 3 | Columns: 4 4 | # 5 | 0 0 0 Index 3 6 | 65 38 30 Index 4 7 | 103 62 49 Index 6 8 | 79 73 72 Index 7 9 | 114 101 97 Index 8 10 | 208 127 100 Index 9 11 | 151 144 142 Index 10 12 | 221 207 199 Index 11 13 | -------------------------------------------------------------------------------- /Modules/build/pillow/libImaging/QuantOctree.h: -------------------------------------------------------------------------------- 1 | #ifndef __QUANT_OCTREE_H__ 2 | #define __QUANT_OCTREE_H__ 3 | 4 | #include "QuantTypes.h" 5 | 6 | int quantize_octree(Pixel *, 7 | uint32_t, 8 | uint32_t, 9 | Pixel **, 10 | uint32_t *, 11 | uint32_t **, 12 | int); 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/graphics/charts/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/graphics/charts/__init__.py 4 | __version__=''' $Id$ ''' 5 | __doc__='''Business charts''' 6 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/lib/__init__.py: -------------------------------------------------------------------------------- 1 | #!/bin/env python 2 | #Copyright ReportLab Europe Ltd. 2000-2012 3 | #see license.txt for license details 4 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/lib/__init__.py 5 | __version__=''' $Id$ ''' 6 | import os 7 | RL_DEBUG = 'RL_DEBUG' in os.environ 8 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/renderPM/libart_lgpl/libart-2.0.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: libart 7 | Description: LGPL version of the libart library 8 | Version: @VERSION@ 9 | Libs: -L${libdir} -lart_lgpl_2 10 | Cflags: -I${includedir}/libart-2.0 11 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/req/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from .req_install import InstallRequirement 4 | from .req_set import RequirementSet, Requirements 5 | from .req_file import parse_requirements 6 | 7 | __all__ = [ 8 | "RequirementSet", "Requirements", "InstallRequirement", 9 | "parse_requirements", 10 | ] 11 | -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/graphics/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/graphics/widgets/__init__.py 4 | __version__=''' $Id$ ''' 5 | __doc__='''Some non-chart widgets''' 6 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/pdfgen/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/pdfgen/__init__.py 4 | __version__=''' $Id$ ''' 5 | __doc__='''Defines a high-level Canvas interface for creating PDF files''' 6 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/renderPM/gt1/gt1-region.h: -------------------------------------------------------------------------------- 1 | /* A simple region-based allocator */ 2 | 3 | typedef struct _Gt1Region Gt1Region; 4 | 5 | Gt1Region *gt1_region_new (void); 6 | void *gt1_region_alloc (Gt1Region *r, int size); 7 | void *gt1_region_realloc (Gt1Region *r, void *p, int old_size, int size); 8 | void gt1_region_free (Gt1Region *r); 9 | -------------------------------------------------------------------------------- /Modules/build/reportlab/tools/docco/README: -------------------------------------------------------------------------------- 1 | This directory contains a number of tools to do with documentation and 2 | documentation building. 3 | 4 | Some of these are our own internal tools which we use for building the 5 | ReportLab documentation. Some tools are obsolete and will be removed 6 | in due course. 7 | 8 | In the mean time, use at your own risk. 9 | -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/lib/__init__.py: -------------------------------------------------------------------------------- 1 | #!/bin/env python 2 | #Copyright ReportLab Europe Ltd. 2000-2012 3 | #see license.txt for license details 4 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/lib/__init__.py 5 | __version__=''' $Id$ ''' 6 | import os 7 | RL_DEBUG = 'RL_DEBUG' in os.environ 8 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/graphics/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/graphics/__init__.py 4 | __version__=''' $Id$ ''' 5 | __doc__='''Framework for reusable object graphics, in PDF or bitmap form''' 6 | 7 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/pdfbase/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/pdfbase/__init__.py 4 | __version__=''' $Id$ ''' 5 | __doc__="""Internal functionality for creating PDF files - not part of API 6 | """ 7 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/renderPM/libart_lgpl/art_config.h: -------------------------------------------------------------------------------- 1 | #ifndef _ART_CONFIG_H 2 | # define _ART_CONFIG_H 3 | # define ART_SIZEOF_CHAR 1 4 | # define ART_SIZEOF_SHORT 2 5 | # define ART_SIZEOF_INT 4 6 | # define ART_SIZEOF_LONG 4 7 | typedef unsigned char art_u8; 8 | typedef unsigned short art_u16; 9 | typedef unsigned int art_u32; 10 | #endif 11 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/test_image_tobytes.py: -------------------------------------------------------------------------------- 1 | from helper import unittest, PillowTestCase, hopper 2 | 3 | 4 | class TestImageToBytes(PillowTestCase): 5 | 6 | def test_sanity(self): 7 | data = hopper().tobytes() 8 | self.assertTrue(isinstance(data, bytes)) 9 | 10 | if __name__ == '__main__': 11 | unittest.main() 12 | 13 | # End of file 14 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/00readme.txt: -------------------------------------------------------------------------------- 1 | Thid directory holds documentation. For end users, 2 | it should contain a number of PDF manuals. For 3 | people working with the source, this directory will 4 | be the destination for any manuals built. 5 | 6 | If you don't see the pdf manual you expected or you wich to 7 | ensure an up to date copy run the script tools/genAll.py! 8 | -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/pdfgen/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/pdfgen/__init__.py 4 | __version__=''' $Id$ ''' 5 | __doc__='''Defines a high-level Canvas interface for creating PDF files''' 6 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/req/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from .req_install import InstallRequirement 4 | from .req_set import RequirementSet, Requirements 5 | from .req_file import parse_requirements 6 | 7 | __all__ = [ 8 | "RequirementSet", "Requirements", "InstallRequirement", 9 | "parse_requirements", 10 | ] 11 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/test_imageshow.py: -------------------------------------------------------------------------------- 1 | from helper import unittest, PillowTestCase 2 | 3 | from PIL import Image 4 | from PIL import ImageShow 5 | 6 | 7 | class TestImageShow(PillowTestCase): 8 | 9 | def test_sanity(self): 10 | dir(Image) 11 | dir(ImageShow) 12 | 13 | 14 | if __name__ == '__main__': 15 | unittest.main() 16 | 17 | # End of file 18 | -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/graphics/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/graphics/__init__.py 4 | __version__=''' $Id$ ''' 5 | __doc__='''Framework for reusable object graphics, in PDF or bitmap form''' 6 | 7 | -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/pdfbase/__init__.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/pdfbase/__init__.py 4 | __version__=''' $Id$ ''' 5 | __doc__="""Internal functionality for creating PDF files - not part of API 6 | """ 7 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/README: -------------------------------------------------------------------------------- 1 | The rl_addons project contains stuff that we don't include as standard, but 2 | which might be of use to ReportLab users. 3 | 4 | renderPM 5 | below this directory are the files needed to build the _renderPM extension 6 | which is used by reportlab.graphics.renderPM. 7 | The libart and gt1 files come from the gnome source tree at cvs.gnome.org 8 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/reference/PSDraw.rst: -------------------------------------------------------------------------------- 1 | .. py:module:: PIL.PSDraw 2 | .. py:currentmodule:: PIL.PSDraw 3 | 4 | :py:mod:`PSDraw` Module 5 | ======================= 6 | 7 | The :py:mod:`PSDraw` module provides simple print support for Postscript 8 | printers. You can print text, graphics and images through this module. 9 | 10 | .. autoclass:: PIL.PSDraw.PSDraw 11 | :members: 12 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/html5lib/filters/_base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/00readme.txt: -------------------------------------------------------------------------------- 1 | This directory is a convenient place to put 2 | fonts where Reportlab will find them. If running 3 | in a server environment, this is a good place to 4 | put Type 1 fonts needed by your application. If 5 | in a desktop environment, you might prefer to add 6 | your font directories to the T1SearchPath in 7 | reportlab/rl_config.py instead. 8 | 9 | -------------------------------------------------------------------------------- /Modules/build/pillow/Scripts/diffcover-install.sh: -------------------------------------------------------------------------------- 1 | # Fetch the remote master branch before running diff-cover on Travis CI. 2 | # https://github.com/edx/diff-cover#troubleshooting 3 | git fetch origin master:refs/remotes/origin/master 4 | 5 | # CFLAGS=-O0 means build with no optimisation. 6 | # Makes build much quicker for lxml and other dependencies. 7 | time CFLAGS=-O0 pip install --use-wheel diff_cover 8 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | """CacheControl import Interface. 2 | 3 | Make it easy to import from cachecontrol without long namespaces. 4 | """ 5 | __author__ = 'Eric Larson' 6 | __email__ = 'eric@ionrock.org' 7 | __version__ = '0.11.5' 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /Modules/lib/Makefile: -------------------------------------------------------------------------------- 1 | AC_ROOT = ../../.. 2 | include $(AC_ROOT)/common.mak 3 | 4 | LIB_FILES = lib_Airgraphviz.py 5 | 6 | ag_lib = $(DESTDIR)$(bindir)/lib 7 | 8 | default: all 9 | 10 | all: 11 | @echo Nothing to do. Run make install 12 | 13 | install: uninstall 14 | install -d $(ag_lib) 15 | install -m 644 $(LIB_FILES) $(ag_lib) 16 | 17 | uninstall: 18 | -rm -f $(ag_lib)/lib_Airgraphviz.py -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/lib/enums.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/lib/enums.py 4 | __version__=''' $Id$ ''' 5 | __doc__=""" 6 | Container for constants. Hardly used! 7 | """ 8 | TA_LEFT = 0 9 | TA_CENTER = 1 10 | TA_RIGHT = 2 11 | TA_JUSTIFY = 4 -------------------------------------------------------------------------------- /Modules/build/pillow/docs/reference/ImageMorph.rst: -------------------------------------------------------------------------------- 1 | .. py:module:: PIL.ImageMorph 2 | .. py:currentmodule:: PIL.ImageMorph 3 | 4 | :py:mod:`ImageMorph` Module 5 | =========================== 6 | 7 | The :py:mod:`ImageMorph` module provides morphology operations on images. 8 | 9 | .. automodule:: PIL.ImageMorph 10 | :members: 11 | :undoc-members: 12 | :show-inheritance: 13 | :noindex: 14 | -------------------------------------------------------------------------------- /Modules/airgraph-ng/lib/Makefile: -------------------------------------------------------------------------------- 1 | AC_ROOT = ../../.. 2 | include $(AC_ROOT)/common.mak 3 | 4 | LIB_FILES = lib_Airgraphviz.py 5 | 6 | ag_lib = $(DESTDIR)$(bindir)/lib 7 | 8 | default: all 9 | 10 | all: 11 | @echo Nothing to do. Run make install 12 | 13 | install: uninstall 14 | install -d $(ag_lib) 15 | install -m 644 $(LIB_FILES) $(ag_lib) 16 | 17 | uninstall: 18 | -rm -f $(ag_lib)/lib_Airgraphviz.py -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/html5lib/filters/_base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/fonts/00readme.txt: -------------------------------------------------------------------------------- 1 | This directory is a convenient place to put 2 | fonts where Reportlab will find them. If running 3 | in a server environment, this is a good place to 4 | put Type 1 fonts needed by your application. If 5 | in a desktop environment, you might prefer to add 6 | your font directories to the T1SearchPath in 7 | reportlab/rl_config.py instead. 8 | 9 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | """CacheControl import Interface. 2 | 3 | Make it easy to import from cachecontrol without long namespaces. 4 | """ 5 | __author__ = 'Eric Larson' 6 | __email__ = 'eric@ionrock.org' 7 | __version__ = '0.11.5' 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- 1 | try: 2 | from urllib.parse import urljoin 3 | except ImportError: 4 | from urlparse import urljoin 5 | 6 | 7 | try: 8 | import cPickle as pickle 9 | except ImportError: 10 | import pickle 11 | 12 | 13 | from pip._vendor.requests.packages.urllib3.response import HTTPResponse 14 | from pip._vendor.requests.packages.urllib3.util import is_fp_closed 15 | -------------------------------------------------------------------------------- /Modules/build/reportlab/build/lib.linux-i686-2.7/reportlab/lib/enums.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | #history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/lib/enums.py 4 | __version__=''' $Id$ ''' 5 | __doc__=""" 6 | Container for constants. Hardly used! 7 | """ 8 | TA_LEFT = 0 9 | TA_CENTER = 1 10 | TA_RIGHT = 2 11 | TA_JUSTIFY = 4 -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/bad_palette_file.gpl: -------------------------------------------------------------------------------- 1 | GIMP Palette 2 | Name: badpalettefile 3 | Columns: 4 4 | # 5 | 0 0 0 Index 3 6 | 01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789 7 | 103 62 49 Index 6 8 | 79 73 72 Index 7 9 | 114 101 97 Index 8 10 | 208 127 100 Index 9 11 | 151 144 142 Index 10 12 | 221 207 199 Index 11 13 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/Guardfile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | from livereload.task import Task 3 | from livereload.compiler import shell 4 | 5 | Task.add('*.rst', shell('make html')) 6 | Task.add('*/*.rst', shell('make html')) 7 | Task.add('_static/*.css', shell('make clean html')) 8 | Task.add('_templates/*', shell('make clean html')) 9 | Task.add('Makefile', shell('make html')) 10 | Task.add('conf.py', shell('make html')) 11 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/test_imagetk.py: -------------------------------------------------------------------------------- 1 | from helper import unittest, PillowTestCase 2 | 3 | 4 | class TestImageTk(PillowTestCase): 5 | 6 | def test_import(self): 7 | try: 8 | from PIL import ImageTk 9 | dir(ImageTk) 10 | except (OSError, ImportError) as v: 11 | self.skipTest(v) 12 | 13 | 14 | if __name__ == '__main__': 15 | unittest.main() 16 | 17 | # End of file 18 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/reference/ImageCms.rst: -------------------------------------------------------------------------------- 1 | .. py:module:: PIL.ImageCms 2 | .. py:currentmodule:: PIL.ImageCms 3 | 4 | :py:mod:`ImageCms` Module 5 | ========================= 6 | 7 | The :py:mod:`ImageCms` module provides color profile management 8 | support using the LittleCMS2 color management engine, based on Kevin 9 | Cazabon's PyCMS library. 10 | 11 | .. automodule:: PIL.ImageCms 12 | :members: 13 | :noindex: 14 | -------------------------------------------------------------------------------- /Modules/build/pillow/.coveragerc: -------------------------------------------------------------------------------- 1 | # .coveragerc to control coverage.py 2 | 3 | [report] 4 | # Regexes for lines to exclude from consideration 5 | exclude_lines = 6 | # Have to re-enable the standard pragma: 7 | pragma: no cover 8 | 9 | # Don't complain if non-runnable code isn't run: 10 | if 0: 11 | if __name__ == .__main__.: 12 | # Don't complain about debug code 13 | if Image.DEBUG: 14 | if DEBUG: 15 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/crash_ttf_memory_error.py: -------------------------------------------------------------------------------- 1 | from PIL import Image, ImageFont, ImageDraw 2 | 3 | font = "../pil-archive/memory-error-2.ttf" 4 | 5 | s = "Test Text" 6 | f = ImageFont.truetype(font, 64, index=0, encoding="unicode") 7 | w, h = f.getsize(s) 8 | i = Image.new("RGB", (500, h), "white") 9 | d = ImageDraw.Draw(i) 10 | 11 | # this line causes a MemoryError 12 | d.text((0, 0), s, font=f, fill=0) 13 | 14 | i.show() 15 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/_templates/sidebarhelp.html: -------------------------------------------------------------------------------- 1 |

    Need help?

    2 |

    3 | You can get help via IRC at irc://irc.freenode.net#pil or Stack Overflow here and here. Please report issues on GitHub. 4 |

    5 | -------------------------------------------------------------------------------- /Modules/build/pillow/build_children.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Get last child project build number from branch named "latest" 4 | BUILD_NUM=$(curl -s 'https://api.travis-ci.org/repos/python-pillow/pillow-wheels/branches/latest' | grep -o '^{"branch":{"id":[0-9]*,' | grep -o '[0-9]' | tr -d '\n') 5 | 6 | # Restart last child project build 7 | curl -X POST https://api.travis-ci.org/builds/$BUILD_NUM/restart --header "Authorization: token "$AUTH_TOKEN 8 | -------------------------------------------------------------------------------- /Modules/build/pillow/depends/install_webp.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # install webp 3 | 4 | if [ ! -f libwebp-0.4.3.tar.gz ]; then 5 | wget 'http://downloads.webmproject.org/releases/webp/libwebp-0.4.3.tar.gz' 6 | fi 7 | 8 | rm -r libwebp-0.4.3 9 | tar -xvzf libwebp-0.4.3.tar.gz 10 | 11 | pushd libwebp-0.4.3 12 | 13 | ./configure --prefix=/usr --enable-libwebpmux --enable-libwebpdemux && make -j4 && sudo make -j4 install 14 | 15 | popd 16 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- 1 | try: 2 | from urllib.parse import urljoin 3 | except ImportError: 4 | from urlparse import urljoin 5 | 6 | 7 | try: 8 | import cPickle as pickle 9 | except ImportError: 10 | import pickle 11 | 12 | 13 | from pip._vendor.requests.packages.urllib3.response import HTTPResponse 14 | from pip._vendor.requests.packages.urllib3.util import is_fp_closed 15 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/check_icns_dos.py: -------------------------------------------------------------------------------- 1 | # Tests potential DOS of IcnsImagePlugin with 0 length block. 2 | # Run from anywhere that PIL is importable. 3 | 4 | from PIL import Image 5 | from io import BytesIO 6 | 7 | if bytes is str: 8 | Image.open(BytesIO(bytes('icns\x00\x00\x00\x10hang\x00\x00\x00\x00'))) 9 | else: 10 | Image.open(BytesIO(bytes('icns\x00\x00\x00\x10hang\x00\x00\x00\x00', 11 | 'latin-1'))) 12 | -------------------------------------------------------------------------------- /Modules/build/pillow/depends/install_openjpeg.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # install openjpeg 3 | 4 | 5 | if [ ! -f openjpeg-2.1.0.tar.gz ]; then 6 | wget 'http://iweb.dl.sourceforge.net/project/openjpeg.mirror/2.1.0/openjpeg-2.1.0.tar.gz' 7 | 8 | fi 9 | 10 | rm -r openjpeg-2.1.0 11 | tar -xvzf openjpeg-2.1.0.tar.gz 12 | 13 | 14 | pushd openjpeg-2.1.0 15 | 16 | cmake -DCMAKE_INSTALL_PREFIX=/usr . && make -j4 && sudo make -j4 install 17 | 18 | popd 19 | 20 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/developer.rst: -------------------------------------------------------------------------------- 1 | Developer 2 | ========= 3 | 4 | .. Note:: When committing only trivial changes, please include [ci skip] in the commit message to avoid running tests on Travis-CI. Thank you! 5 | 6 | 7 | Release 8 | ------- 9 | 10 | Details about making a Pillow release. 11 | 12 | Version number 13 | ~~~~~~~~~~~~~~ 14 | 15 | The version number is currently stored in 3 places:: 16 | 17 | PIL/__init__.py _imaging.c setup.py 18 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/html5lib/filters/sanitizer.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from . import _base 4 | from ..sanitizer import HTMLSanitizerMixin 5 | 6 | 7 | class Filter(_base.Filter, HTMLSanitizerMixin): 8 | def __iter__(self): 9 | for token in _base.Filter.__iter__(self): 10 | token = self.sanitize_token(token) 11 | if token: 12 | yield token 13 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/import_all.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | import sys 3 | sys.path.insert(0, ".") 4 | 5 | import glob 6 | import os 7 | import traceback 8 | 9 | for file in glob.glob("PIL/*.py"): 10 | module = os.path.basename(file)[:-3] 11 | try: 12 | exec("from PIL import " + module) 13 | except (ImportError, SyntaxError): 14 | print("===", "failed to import", module) 15 | traceback.print_exc() 16 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/test_image_frombytes.py: -------------------------------------------------------------------------------- 1 | from helper import unittest, PillowTestCase, hopper 2 | 3 | from PIL import Image 4 | 5 | 6 | class TestImageFromBytes(PillowTestCase): 7 | 8 | def test_sanity(self): 9 | im1 = hopper() 10 | im2 = Image.frombytes(im1.mode, im1.size, im1.tobytes()) 11 | 12 | self.assert_image_equal(im1, im2) 13 | 14 | 15 | if __name__ == '__main__': 16 | unittest.main() 17 | 18 | # End of file 19 | -------------------------------------------------------------------------------- /Modules/man/Makefile: -------------------------------------------------------------------------------- 1 | AC_ROOT = ../../.. 2 | include $(AC_ROOT)/common.mak 3 | 4 | MP_FILES = airgraph-ng.1 dump-join.1 5 | 6 | 7 | default: all 8 | 9 | all: 10 | @echo "Nothing to do. Run make install" 11 | 12 | install: uninstall 13 | install -d $(DESTDIR)$(mandir) 14 | install -m 644 $(MP_FILES) $(DESTDIR)$(mandir) 15 | 16 | uninstall: 17 | @-$(foreach CUR_MP,$(MP_FILES), rm -f $(DESTDIR)$(mandir)/$(CUR_MP); echo rm -f $(DESTDIR)$(mandir)/$(CUR_MP); ) 18 | -------------------------------------------------------------------------------- /Scripts/install_freeradius.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wget https://github.com/entropy1337/radiusd_copy/raw/master/freeradius-server-2.1.11.tar.bz2 4 | wget https://raw.githubusercontent.com/entropy1337/radiusd_copy/master/freeradius-wpe.patch 5 | tar -jxvf freeradius-server-2.1.11.tar.bz2 6 | cd freeradius-server-2.1.11 7 | patch -p1 < ../freeradius-wpe.patch 8 | ./configure 9 | make 10 | sudo make install 11 | sh /usr/local/etc/raddb/certs/bootstrap 12 | rm -rf freeradius* 13 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/gimp_gradient.ggr: -------------------------------------------------------------------------------- 1 | GIMP Gradient 2 | 4 3 | 0.000000 0.351923 0.534893 1.000000 1.000000 1.000000 0.910000 0.730303 0.510606 1.000000 0.480000 1 0 4 | 0.501504 0.611002 0.637730 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 1 0 5 | 0.931891 0.951264 1.000000 0.531255 0.316078 1.031173 1.000000 0.000000 0.000000 0.000000 1.000000 0 0 6 | 0.810551 0.881217 0.921883 0.717576 0.441331 0.081217 1.000000 0.751576 0.410331 0.081217 1.000000 0 0 -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/html5lib/filters/sanitizer.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from . import _base 4 | from ..sanitizer import HTMLSanitizerMixin 5 | 6 | 7 | class Filter(_base.Filter, HTMLSanitizerMixin): 8 | def __iter__(self): 9 | for token in _base.Filter.__iter__(self): 10 | token = self.sanitize_token(token) 11 | if token: 12 | yield token 13 | -------------------------------------------------------------------------------- /Modules/airgraph-ng/man/Makefile: -------------------------------------------------------------------------------- 1 | AC_ROOT = ../../.. 2 | include $(AC_ROOT)/common.mak 3 | 4 | MP_FILES = airgraph-ng.1 dump-join.1 5 | 6 | 7 | default: all 8 | 9 | all: 10 | @echo "Nothing to do. Run make install" 11 | 12 | install: uninstall 13 | install -d $(DESTDIR)$(mandir) 14 | install -m 644 $(MP_FILES) $(DESTDIR)$(mandir) 15 | 16 | uninstall: 17 | @-$(foreach CUR_MP,$(MP_FILES), rm -f $(DESTDIR)$(mandir)/$(CUR_MP); echo rm -f $(DESTDIR)$(mandir)/$(CUR_MP); ) 18 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/test_image_getim.py: -------------------------------------------------------------------------------- 1 | from helper import unittest, PillowTestCase, hopper, py3 2 | 3 | 4 | class TestImageGetIm(PillowTestCase): 5 | 6 | def test_sanity(self): 7 | im = hopper() 8 | type_repr = repr(type(im.getim())) 9 | 10 | if py3: 11 | self.assertIn("PyCapsule", type_repr) 12 | 13 | self.assertIsInstance(im.im.id, int) 14 | 15 | 16 | if __name__ == '__main__': 17 | unittest.main() 18 | 19 | # End of file 20 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/check_j2k_dos.py: -------------------------------------------------------------------------------- 1 | # Tests potential DOS of Jpeg2kImagePlugin with 0 length block. 2 | # Run from anywhere that PIL is importable. 3 | 4 | from PIL import Image 5 | from io import BytesIO 6 | 7 | if bytes is str: 8 | Image.open(BytesIO(bytes( 9 | '\x00\x00\x00\x0cjP\x20\x20\x0d\x0a\x87\x0a\x00\x00\x00\x00hang'))) 10 | else: 11 | Image.open(BytesIO(bytes( 12 | '\x00\x00\x00\x0cjP\x20\x20\x0d\x0a\x87\x0a\x00\x00\x00\x00hang', 13 | 'latin-1'))) 14 | -------------------------------------------------------------------------------- /Modules/build/pillow/winbuild/fetch.py: -------------------------------------------------------------------------------- 1 | import sys 2 | import os 3 | import urllib.parse 4 | import urllib.request 5 | 6 | 7 | def fetch(url): 8 | name = urllib.parse.urlsplit(url)[2].split('/')[-1] 9 | 10 | if not os.path.exists(name): 11 | print("Fetching", url) 12 | content = urllib.request.urlopen(url).read() 13 | with open(name, 'wb') as fd: 14 | fd.write(content) 15 | return name 16 | 17 | if __name__ == '__main__': 18 | fetch(sys.argv[1]) 19 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/bench_get.py: -------------------------------------------------------------------------------- 1 | import sys 2 | sys.path.insert(0, ".") 3 | 4 | import helper 5 | import timeit 6 | 7 | 8 | def bench(mode): 9 | im = helper.hopper(mode) 10 | get = im.im.getpixel 11 | xy = 50, 50 # position shouldn't really matter 12 | t0 = timeit.default_timer() 13 | for _ in range(1000000): 14 | get(xy) 15 | print(mode, timeit.default_timer() - t0, "us") 16 | 17 | bench("L") 18 | bench("I") 19 | bench("I;16") 20 | bench("F") 21 | bench("RGB") 22 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from textwrap import dedent 2 | 3 | try: 4 | from .file_cache import FileCache 5 | except ImportError: 6 | notice = dedent(''' 7 | NOTE: In order to use the FileCache you must have 8 | lockfile installed. You can install it via pip: 9 | pip install lockfile 10 | ''') 11 | print(notice) 12 | 13 | 14 | try: 15 | import redis 16 | from .redis_cache import RedisCache 17 | except ImportError: 18 | pass 19 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/test_file_tga.py: -------------------------------------------------------------------------------- 1 | from helper import unittest, PillowTestCase 2 | 3 | from PIL import Image 4 | 5 | 6 | class TestFileTga(PillowTestCase): 7 | 8 | def test_id_field(self): 9 | # tga file with id field 10 | test_file = "Tests/images/tga_id_field.tga" 11 | 12 | # Act 13 | im = Image.open(test_file) 14 | 15 | # Assert 16 | self.assertEqual(im.size, (100, 100)) 17 | 18 | 19 | if __name__ == '__main__': 20 | unittest.main() 21 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/renderPM/libart_lgpl/libart-features.c: -------------------------------------------------------------------------------- 1 | #include "libart-features.h" 2 | 3 | /* General initialization hooks */ 4 | const unsigned int libart_major_version=LIBART_MAJOR_VERSION, 5 | libart_minor_version=LIBART_MINOR_VERSION, 6 | libart_micro_version=LIBART_MICRO_VERSION; 7 | 8 | const char *libart_version = LIBART_VERSION; 9 | 10 | void 11 | libart_preinit(void *app, void *modinfo) 12 | { 13 | } 14 | 15 | void 16 | libart_postinit(void *app, void *modinfo) 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/reference/ImageTk.rst: -------------------------------------------------------------------------------- 1 | .. py:module:: PIL.ImageTk 2 | .. py:currentmodule:: PIL.ImageTk 3 | 4 | :py:mod:`ImageTk` Module 5 | ======================== 6 | 7 | The :py:mod:`ImageTk` module contains support to create and modify Tkinter 8 | BitmapImage and PhotoImage objects from PIL images. 9 | 10 | For examples, see the demo programs in the Scripts directory. 11 | 12 | .. autoclass:: PIL.ImageTk.BitmapImage 13 | :members: 14 | 15 | .. autoclass:: PIL.ImageTk.PhotoImage 16 | :members: 17 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/gimp_gradient_with_name.ggr: -------------------------------------------------------------------------------- 1 | GIMP Gradient 2 | Name: A GIMP 1.3 gradient file 3 | 4 4 | 0.000000 0.351923 0.534893 1.000000 1.000000 1.000000 0.910000 0.730303 0.510606 1.000000 0.480000 1 0 5 | 0.501504 0.611002 0.637730 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 1 0 6 | 0.931891 0.951264 1.000000 0.531255 0.316078 1.031173 1.000000 0.000000 0.000000 0.000000 1.000000 0 0 7 | 0.810551 0.881217 0.921883 0.717576 0.441331 0.081217 1.000000 0.751576 0.410331 0.081217 1.000000 0 0 -------------------------------------------------------------------------------- /Modules/build/pillow/winbuild/get_pythons.py: -------------------------------------------------------------------------------- 1 | from fetch import fetch 2 | import os 3 | 4 | if __name__ == '__main__': 5 | for version in ['2.6.5', '2.7.6', '3.2.5', '3.3.5', '3.4.3']: 6 | for platform in ['', '.amd64']: 7 | for extension in ['', '.asc']: 8 | fetch('https://www.python.org/ftp/python/%s/python-%s%s.msi%s' 9 | % (version, version, platform, extension)) 10 | 11 | # find pip, if it's not in the path! 12 | os.system('pip install virtualenv') 13 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from textwrap import dedent 2 | 3 | try: 4 | from .file_cache import FileCache 5 | except ImportError: 6 | notice = dedent(''' 7 | NOTE: In order to use the FileCache you must have 8 | lockfile installed. You can install it via pip: 9 | pip install lockfile 10 | ''') 11 | print(notice) 12 | 13 | 14 | try: 15 | import redis 16 | from .redis_cache import RedisCache 17 | except ImportError: 18 | pass 19 | -------------------------------------------------------------------------------- /Modules/build/reportlab/PKG-INFO: -------------------------------------------------------------------------------- 1 | 2 | Metadata-Version: 1.0 3 | Name: reportlab 4 | Version: 3.2.0 5 | Summary: The ReportLab Toolkit 6 | Home-page: http://www.reportlab.com/ 7 | Author: Andy Robinson, Robin Becker, the ReportLab team and the community 8 | Author-email: reportlab-users@lists2.reportlab.com 9 | License: BSD license (see license.txt for details), Copyright (c) 2000-2010, ReportLab Inc. 10 | Description: The ReportLab Toolkit. An Open Source Python library for generating PDFs and graphics. 11 | Platform: UNKNOWN 12 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/corner.lut: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/edge.lut: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/erosion4.lut: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/erosion8.lut: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/dilation4.lut: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/images/dilation8.lut: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Modules/build/pillow/tox.ini: -------------------------------------------------------------------------------- 1 | # Tox (http://tox.testrun.org/) is a tool for running tests 2 | # in multiple virtualenvs. This configuration file will run the 3 | # test suite on all supported python versions. To use it, "pip install tox" 4 | # and then run "tox" from this directory. 5 | 6 | [tox] 7 | envlist = py26, py27, py32, py33, py34 8 | 9 | [testenv] 10 | commands = 11 | {envpython} setup.py clean 12 | {envpython} setup.py build_ext --inplace 13 | {envpython} selftest.py 14 | {envpython} test-installed.py --installed 15 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab.egg-info/PKG-INFO: -------------------------------------------------------------------------------- 1 | Metadata-Version: 1.0 2 | Name: reportlab 3 | Version: 3.2.0 4 | Summary: The Reportlab Toolkit 5 | Home-page: http://www.reportlab.com/ 6 | Author: Andy Robinson, Robin Becker, the ReportLab team and the community 7 | Author-email: reportlab-users@lists2.reportlab.com 8 | License: BSD license (see license.txt for details), Copyright (c) 2000-2012, ReportLab Inc. 9 | Description: The ReportLab Toolkit. An Open Source Python library for generating PDFs and graphics. 10 | Platform: UNKNOWN 11 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/test_image_copy.py: -------------------------------------------------------------------------------- 1 | from helper import unittest, PillowTestCase, hopper 2 | 3 | 4 | class TestImageCopy(PillowTestCase): 5 | 6 | def test_copy(self): 7 | def copy(mode): 8 | im = hopper(mode) 9 | out = im.copy() 10 | self.assertEqual(out.mode, mode) 11 | self.assertEqual(out.size, im.size) 12 | for mode in "1", "P", "L", "RGB", "I", "F": 13 | copy(mode) 14 | 15 | if __name__ == '__main__': 16 | unittest.main() 17 | 18 | # End of file 19 | -------------------------------------------------------------------------------- /Modules/build/pip/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include AUTHORS.txt 2 | include LICENSE.txt 3 | include CHANGES.txt 4 | include README.rst 5 | include pip/_vendor/README.rst 6 | include pip/_vendor/vendor.txt 7 | 8 | exclude .coveragerc 9 | exclude .mailmap 10 | exclude .travis.yml 11 | exclude pip/_vendor/Makefile 12 | exclude tox.ini 13 | exclude dev-requirements.txt 14 | 15 | recursive-include pip/_vendor *.pem 16 | recursive-include docs Makefile *.rst *.py *.bat 17 | 18 | prune .travis 19 | prune docs/_build 20 | prune contrib 21 | prune tasks 22 | prune tests 23 | -------------------------------------------------------------------------------- /Modules/build/reportlab/pip-egg-info/reportlab.egg-info/PKG-INFO: -------------------------------------------------------------------------------- 1 | Metadata-Version: 1.0 2 | Name: reportlab 3 | Version: 3.2.0 4 | Summary: The Reportlab Toolkit 5 | Home-page: http://www.reportlab.com/ 6 | Author: Andy Robinson, Robin Becker, the ReportLab team and the community 7 | Author-email: reportlab-users@lists2.reportlab.com 8 | License: BSD license (see license.txt for details), Copyright (c) 2000-2012, ReportLab Inc. 9 | Description: The ReportLab Toolkit. An Open Source Python library for generating PDFs and graphics. 10 | Platform: UNKNOWN 11 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/renderPM/libart_lgpl/README.CVS: -------------------------------------------------------------------------------- 1 | Welcome to the libart source tree! 2 | 3 | This code is being developed in a "free software for sale" 4 | model. Thus, it's available under a free software license (LGPL for 5 | this module), but I'm also requesting that for all changes to the code 6 | the copyright gets assigned back to me. 7 | 8 | So if you want to contribute, please do, but contact me about getting 9 | the copyright assigned. Otherwise, I will have to back your changes 10 | out. 11 | 12 | Thanks! 13 | 14 | Raph Levien 15 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/test_file_sun.py: -------------------------------------------------------------------------------- 1 | from helper import unittest, PillowTestCase 2 | 3 | from PIL import Image 4 | 5 | 6 | class TestFileSun(PillowTestCase): 7 | 8 | def test_sanity(self): 9 | # Arrange 10 | # Created with ImageMagick: convert hopper.jpg hopper.ras 11 | test_file = "Tests/images/hopper.ras" 12 | 13 | # Act 14 | im = Image.open(test_file) 15 | 16 | # Assert 17 | self.assertEqual(im.size, (128, 128)) 18 | 19 | 20 | if __name__ == '__main__': 21 | unittest.main() 22 | 23 | # End of file 24 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/reference/index.rst: -------------------------------------------------------------------------------- 1 | Reference 2 | ========= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | 8 | Image 9 | ImageChops 10 | ImageColor 11 | ImageCms 12 | ImageDraw 13 | ImageEnhance 14 | ImageFile 15 | ImageFilter 16 | ImageFont 17 | ImageGrab 18 | ImageMath 19 | ImageMorph 20 | ImageOps 21 | ImagePalette 22 | ImagePath 23 | ImageQt 24 | ImageSequence 25 | ImageStat 26 | ImageTk 27 | ImageWin 28 | ExifTags 29 | OleFileIO 30 | PSDraw 31 | PixelAccess 32 | PyAccess 33 | ../PIL 34 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/models/index.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.six.moves.urllib import parse as urllib_parse 2 | 3 | 4 | class Index(object): 5 | def __init__(self, url): 6 | self.url = url 7 | self.netloc = urllib_parse.urlsplit(url).netloc 8 | self.simple_url = self.url_to_path('simple') 9 | self.pypi_url = self.url_to_path('pypi') 10 | self.pip_json_url = self.url_to_path('pypi/pip/json') 11 | 12 | def url_to_path(self, path): 13 | return urllib_parse.urljoin(self.url, path) 14 | 15 | 16 | PyPI = Index('https://pypi.python.org/') 17 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/versions.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | from PIL import Image 3 | 4 | 5 | def version(module, version): 6 | v = getattr(module.core, version + "_version", None) 7 | if v: 8 | print(version, v) 9 | 10 | version(Image, "jpeglib") 11 | version(Image, "zlib") 12 | 13 | try: 14 | from PIL import ImageFont 15 | except ImportError: 16 | pass 17 | else: 18 | version(ImageFont, "freetype2") 19 | 20 | try: 21 | from PIL import ImageCms 22 | except ImportError: 23 | pass 24 | else: 25 | version(ImageCms, "littlecms") 26 | -------------------------------------------------------------------------------- /Modules/man/dump-join.1: -------------------------------------------------------------------------------- 1 | .TH Dump-join 2 | 3 | 4 | .SH NAME 5 | dump-join - a support tool for airgraph-ng that allows you to join the airodump output files. 6 | 7 | .SH SYNOPSIS 8 | dump-join.py -i foo_name_1 foo_name_2 foo_name_3 .... -o output-file.txt 9 | 10 | .SH DESCRIPTION 11 | A simple support tool that allows joining of airodump files into one 12 | larger file. It supports an unlimited amount of input files to a 13 | single output file. 14 | 15 | .SH OPTIONS 16 | .IP -i 17 | Input Files [ foo_name_1 foo_name_2 foo_name_3 ..] 18 | .IP -o 19 | Output File 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/test_font_bdf.py: -------------------------------------------------------------------------------- 1 | from helper import unittest, PillowTestCase 2 | 3 | from PIL import FontFile, BdfFontFile 4 | 5 | filename = "Tests/images/courB08.bdf" 6 | 7 | 8 | class TestFontBdf(PillowTestCase): 9 | 10 | def test_sanity(self): 11 | 12 | test_file = open(filename, "rb") 13 | font = BdfFontFile.BdfFontFile(test_file) 14 | 15 | self.assertIsInstance(font, FontFile.FontFile) 16 | self.assertEqual(len([_f for _f in font.glyph if _f]), 190) 17 | 18 | 19 | if __name__ == '__main__': 20 | unittest.main() 21 | 22 | # End of file 23 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | # Python 3.2+ 3 | from ssl import CertificateError, match_hostname 4 | except ImportError: 5 | try: 6 | # Backport of the function from a pypi module 7 | from backports.ssl_match_hostname import CertificateError, match_hostname 8 | except ImportError: 9 | # Our vendored copy 10 | from ._implementation import CertificateError, match_hostname 11 | 12 | # Not needed, but documenting what we provide. 13 | __all__ = ('CertificateError', 'match_hostname') 14 | -------------------------------------------------------------------------------- /Modules/airgraph-ng/man/dump-join.1: -------------------------------------------------------------------------------- 1 | .TH Dump-join 2 | 3 | 4 | .SH NAME 5 | dump-join - a support tool for airgraph-ng that allows you to join the airodump output files. 6 | 7 | .SH SYNOPSIS 8 | dump-join.py -i foo_name_1 foo_name_2 foo_name_3 .... -o output-file.txt 9 | 10 | .SH DESCRIPTION 11 | A simple support tool that allows joining of airodump files into one 12 | larger file. It supports an unlimited amount of input files to a 13 | single output file. 14 | 15 | .SH OPTIONS 16 | .IP -i 17 | Input Files [ foo_name_1 foo_name_2 foo_name_3 ..] 18 | .IP -o 19 | Output File 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/models/index.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.six.moves.urllib import parse as urllib_parse 2 | 3 | 4 | class Index(object): 5 | def __init__(self, url): 6 | self.url = url 7 | self.netloc = urllib_parse.urlsplit(url).netloc 8 | self.simple_url = self.url_to_path('simple') 9 | self.pypi_url = self.url_to_path('pypi') 10 | self.pip_json_url = self.url_to_path('pypi/pip/json') 11 | 12 | def url_to_path(self, path): 13 | return urllib_parse.urljoin(self.url, path) 14 | 15 | 16 | PyPI = Index('https://pypi.python.org/') 17 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/html5lib/serializer/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .. import treewalkers 4 | 5 | from .htmlserializer import HTMLSerializer 6 | 7 | 8 | def serialize(input, tree="etree", format="html", encoding=None, 9 | **serializer_opts): 10 | # XXX: Should we cache this? 11 | walker = treewalkers.getTreeWalker(tree) 12 | if format == "html": 13 | s = HTMLSerializer(**serializer_opts) 14 | else: 15 | raise ValueError("type must be html") 16 | return s.render(walker(input), encoding) 17 | -------------------------------------------------------------------------------- /Modules/build/reportlab/docs/userguide/graph_intro.py: -------------------------------------------------------------------------------- 1 | #Copyright ReportLab Europe Ltd. 2000-2012 2 | #see license.txt for license details 3 | __version__=''' $Id$ ''' 4 | from tools.docco.rl_doc_utils import * 5 | 6 | heading1("Graphics") 7 | 8 | heading2("Introduction") 9 | 10 | disc(""" 11 | ReportLab Graphics is one of the sub-packages to the ReportLab 12 | library. It started off as a stand-alone set of programs, but is now a 13 | fully integrated part of the ReportLab toolkit that allows you to use 14 | its powerful charting and graphics features to improve your PDF forms 15 | and reports. 16 | """) 17 | 18 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/test_image_tobitmap.py: -------------------------------------------------------------------------------- 1 | from helper import unittest, PillowTestCase, hopper, fromstring 2 | 3 | 4 | class TestImageToBitmap(PillowTestCase): 5 | 6 | def test_sanity(self): 7 | 8 | self.assertRaises(ValueError, lambda: hopper().tobitmap()) 9 | hopper().convert("1").tobitmap() 10 | 11 | im1 = hopper().convert("1") 12 | 13 | bitmap = im1.tobitmap() 14 | 15 | self.assertIsInstance(bitmap, bytes) 16 | self.assert_image_equal(im1, fromstring(bitmap)) 17 | 18 | 19 | if __name__ == '__main__': 20 | unittest.main() 21 | 22 | # End of file 23 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/reportlab/fonts/DarkGarden-changelog.txt: -------------------------------------------------------------------------------- 1 | 2004-05-18 Michal Kosmulski 2 | * Version 1.1 3 | * Changed license to GNU GPL with Font Exception 4 | * Added Zacute character 5 | * Added basic hinting 6 | * Added kerning information 7 | 2000 Michal Kosmulski 8 | * Version 1.0 9 | * Added Polish and German diacritic characters except for Zacute 10 | 11 | 1999 Michal Kosmulski 12 | * Version 0.9 13 | * Includes only the 26 letters of the English alphabet 14 | * Distributed under a freeware license 15 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/renderPM/libart_lgpl/libart-features.h.in: -------------------------------------------------------------------------------- 1 | #ifndef LIBART_FEATURES_H 2 | #define LIBART_FEATURES_H 1 3 | 4 | #define LIBART_MAJOR_VERSION (@LIBART_MAJOR_VERSION@) 5 | #define LIBART_MINOR_VERSION (@LIBART_MINOR_VERSION@) 6 | #define LIBART_MICRO_VERSION (@LIBART_MICRO_VERSION@) 7 | #define LIBART_VERSION "@LIBART_VERSION@" 8 | 9 | extern const unsigned int libart_major_version, libart_minor_version, libart_micro_version; 10 | extern const char *libart_version; 11 | 12 | void libart_preinit(void *app, void *modinfo); 13 | void libart_postinit(void *app, void *modinfo); 14 | #endif 15 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/rl_accel/README.extensions: -------------------------------------------------------------------------------- 1 | This directory contains all of ReportLab's extensions. 2 | 3 | The file __BUILD.dsw is suitable for VC++ 6.0; th dsp files are 4 | for individual projects. At present these are 5 | 6 | _rl_accel.dsp (.c) 7 | pyHnj.dsp 8 | 9 | for unix the Setup.in and generic Makefile.pre.in are included. 10 | You need to do 11 | 12 | make -f Makefile.pre.in boot 13 | make 14 | 15 | then you should have some shared libraries. 16 | 17 | Alternatively you can use the distutils setup.py file 18 | eg 19 | setup.py build or setup.py install 20 | 21 | Robin Becker 22 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | # Python 3.2+ 3 | from ssl import CertificateError, match_hostname 4 | except ImportError: 5 | try: 6 | # Backport of the function from a pypi module 7 | from backports.ssl_match_hostname import CertificateError, match_hostname 8 | except ImportError: 9 | # Our vendored copy 10 | from ._implementation import CertificateError, match_hostname 11 | 12 | # Not needed, but documenting what we provide. 13 | __all__ = ('CertificateError', 'match_hostname') 14 | -------------------------------------------------------------------------------- /Modules/build/reportlab/demos/tests/testdemos.py: -------------------------------------------------------------------------------- 1 | #!/bin/env python 2 | #Copyright ReportLab Europe Ltd. 2000-2012 3 | #see license.txt for license details 4 | __doc__='Test all demos' 5 | __version__=''' $Id$ ''' 6 | _globals=globals().copy() 7 | import os, sys 8 | from reportlab import pdfgen 9 | 10 | for p in ('pythonpoint/pythonpoint.py','stdfonts/stdfonts.py','odyssey/odyssey.py', 'gadflypaper/gfe.py'): 11 | fn = os.path.normcase(os.path.normpath(os.path.join(os.path.dirname(pdfgen.__file__),'..','demos',p))) 12 | os.chdir(os.path.dirname(fn)) 13 | exec(compile(open(fn).read(), fn, 'exec'),_globals.copy()) 14 | -------------------------------------------------------------------------------- /Modules/build/pip/docs/reference/pip_search.rst: -------------------------------------------------------------------------------- 1 | .. _`pip search`: 2 | 3 | pip search 4 | ---------- 5 | 6 | .. contents:: 7 | 8 | Usage 9 | ***** 10 | 11 | .. pip-command-usage:: search 12 | 13 | 14 | Description 15 | *********** 16 | 17 | .. pip-command-description:: search 18 | 19 | Options 20 | ******* 21 | 22 | .. pip-command-options:: search 23 | 24 | 25 | Examples 26 | ******** 27 | 28 | 1. Search for "peppercorn" 29 | 30 | :: 31 | 32 | $ pip search peppercorn 33 | pepperedform - Helpers for using peppercorn with formprocess. 34 | peppercorn - A library for converting a token stream into [...] 35 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/html5lib/serializer/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .. import treewalkers 4 | 5 | from .htmlserializer import HTMLSerializer 6 | 7 | 8 | def serialize(input, tree="etree", format="html", encoding=None, 9 | **serializer_opts): 10 | # XXX: Should we cache this? 11 | walker = treewalkers.getTreeWalker(tree) 12 | if format == "html": 13 | s = HTMLSerializer(**serializer_opts) 14 | else: 15 | raise ValueError("type must be html") 16 | return s.render(walker(input), encoding) 17 | -------------------------------------------------------------------------------- /Modules/build/pip/docs/reference/pip_show.rst: -------------------------------------------------------------------------------- 1 | .. _`pip show`: 2 | 3 | pip show 4 | -------- 5 | 6 | .. contents:: 7 | 8 | Usage 9 | ***** 10 | 11 | .. pip-command-usage:: show 12 | 13 | Description 14 | *********** 15 | 16 | .. pip-command-description:: show 17 | 18 | 19 | Options 20 | ******* 21 | 22 | .. pip-command-options:: show 23 | 24 | 25 | Examples 26 | ******** 27 | 28 | 1. Show information about a package: 29 | 30 | :: 31 | 32 | $ pip show sphinx 33 | --- 34 | Name: Sphinx 35 | Version: 1.1.3 36 | Location: /my/env/lib/pythonx.x/site-packages 37 | Requires: Pygments, Jinja2, docutils 38 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- 1 | from .adapter import CacheControlAdapter 2 | from .cache import DictCache 3 | 4 | 5 | def CacheControl(sess, 6 | cache=None, 7 | cache_etags=True, 8 | serializer=None, 9 | heuristic=None): 10 | 11 | cache = cache or DictCache() 12 | adapter = CacheControlAdapter( 13 | cache, 14 | cache_etags=cache_etags, 15 | serializer=serializer, 16 | heuristic=heuristic, 17 | ) 18 | sess.mount('http://', adapter) 19 | sess.mount('https://', adapter) 20 | 21 | return sess 22 | -------------------------------------------------------------------------------- /Modules/build/pip/docs/index.rst: -------------------------------------------------------------------------------- 1 | pip 2 | === 3 | 4 | `User list `_ | 5 | `Dev list `_ | 6 | `Github `_ | 7 | `PyPI `_ | 8 | User IRC: #pypa | 9 | Dev IRC: #pypa-dev 10 | 11 | The `PyPA recommended 12 | `_ 13 | tool for installing Python packages. 14 | 15 | .. toctree:: 16 | :maxdepth: 2 17 | 18 | quickstart 19 | installing 20 | user_guide 21 | reference/index 22 | development 23 | news 24 | 25 | 26 | -------------------------------------------------------------------------------- /Scripts/Makefile: -------------------------------------------------------------------------------- 1 | AC_ROOT = ../.. 2 | DOCFILES = README 3 | include $(AC_ROOT)/common.mak 4 | 5 | default: all 6 | 7 | all: 8 | @echo "Nothing to do. Run make install" 9 | 10 | install: doc 11 | python setup.py install --prefix="$(prefix)" --record files.txt 12 | 13 | doc: 14 | $(MAKE) -C man install 15 | install -d $(prefix)$(docdir) 16 | install -d $(prefix)/share/airgraph-ng 17 | install -m 644 $(DOCFILES) $(DESTDIR)$(docdir) 18 | 19 | uninstall: clean 20 | $(MAKE) -C man $(@) 21 | cat files.txt | xargs rm -rf 22 | rm -f files.txt 23 | 24 | clean: 25 | python setup.py clean 26 | rm -rf build 27 | 28 | distclean: clean 29 | -------------------------------------------------------------------------------- /Modules/build/pillow/Scripts/createfontdatachunk.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | import base64 3 | import os 4 | import sys 5 | 6 | if __name__ == "__main__": 7 | # create font data chunk for embedding 8 | font = "Tests/images/courB08" 9 | print(" f._load_pilfont_data(") 10 | print(" # %s" % os.path.basename(font)) 11 | print(" BytesIO(base64.decodestring(b'''") 12 | base64.encode(open(font + ".pil", "rb"), sys.stdout) 13 | print("''')), Image.open(BytesIO(base64.decodestring(b'''") 14 | base64.encode(open(font + ".pbm", "rb"), sys.stdout) 15 | print("'''))))") 16 | 17 | # End of file 18 | -------------------------------------------------------------------------------- /Modules/airgraph-ng/Makefile: -------------------------------------------------------------------------------- 1 | AC_ROOT = ../.. 2 | DOCFILES = README 3 | include $(AC_ROOT)/common.mak 4 | 5 | default: all 6 | 7 | all: 8 | @echo "Nothing to do. Run make install" 9 | 10 | install: doc 11 | python setup.py install --prefix="$(prefix)" --record files.txt 12 | 13 | doc: 14 | $(MAKE) -C man install 15 | install -d $(prefix)$(docdir) 16 | install -d $(prefix)/share/airgraph-ng 17 | install -m 644 $(DOCFILES) $(DESTDIR)$(docdir) 18 | 19 | uninstall: clean 20 | $(MAKE) -C man $(@) 21 | cat files.txt | xargs rm -rf 22 | rm -f files.txt 23 | 24 | clean: 25 | python setup.py clean 26 | rm -rf build 27 | 28 | distclean: clean 29 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- 1 | from .adapter import CacheControlAdapter 2 | from .cache import DictCache 3 | 4 | 5 | def CacheControl(sess, 6 | cache=None, 7 | cache_etags=True, 8 | serializer=None, 9 | heuristic=None): 10 | 11 | cache = cache or DictCache() 12 | adapter = CacheControlAdapter( 13 | cache, 14 | cache_etags=cache_etags, 15 | serializer=serializer, 16 | heuristic=heuristic, 17 | ) 18 | sess.mount('http://', adapter) 19 | sess.mount('https://', adapter) 20 | 21 | return sess 22 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/requests/packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- 1 | # For backwards compatibility, provide imports that used to be here. 2 | from .connection import is_connection_dropped 3 | from .request import make_headers 4 | from .response import is_fp_closed 5 | from .ssl_ import ( 6 | SSLContext, 7 | HAS_SNI, 8 | assert_fingerprint, 9 | resolve_cert_reqs, 10 | resolve_ssl_version, 11 | ssl_wrap_socket, 12 | ) 13 | from .timeout import ( 14 | current_time, 15 | Timeout, 16 | ) 17 | 18 | from .retry import Retry 19 | from .url import ( 20 | get_host, 21 | parse_url, 22 | split_first, 23 | Url, 24 | ) 25 | -------------------------------------------------------------------------------- /Modules/airgraph-ng/setup.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # This file is Copyright David Francos Cuartero, licensed under the GPL2 license. 3 | 4 | from distutils.core import setup 5 | #from setuptools import setup 6 | import os 7 | 8 | setup(name='airgraph-ng', 9 | version='1.1', 10 | description='Aircrack-ng network grapher', 11 | author='TheX1le', 12 | console = [{"script": "airgraph-ng" }], 13 | url='http://aircrack-ng.org', 14 | license='GPL2', 15 | classifiers=[ 16 | 'Development Status :: 4 - Beta', 17 | ], 18 | packages=['graphviz'], 19 | scripts=['dump-join', 'airgraph-ng'], 20 | ) 21 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/show_icc.py: -------------------------------------------------------------------------------- 1 | import sys 2 | sys.path.insert(0, ".") 3 | 4 | from PIL import Image 5 | from PIL import ImageCms 6 | 7 | try: 8 | filename = sys.argv[1] 9 | except IndexError: 10 | filename = "../pil-archive/cmyk.jpg" 11 | 12 | i = Image.open(filename) 13 | 14 | print(i.format) 15 | print(i.mode) 16 | print(i.size) 17 | print(i.tile) 18 | 19 | p = ImageCms.getMemoryProfile(i.info["icc_profile"]) 20 | 21 | print(repr(p.product_name)) 22 | print(repr(p.product_info)) 23 | 24 | o = ImageCms.createProfile("sRGB") 25 | t = ImageCms.buildTransformFromOpenProfiles(p, o, i.mode, "RGB") 26 | i = ImageCms.applyTransform(i, t) 27 | 28 | i.show() 29 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/_markerlib/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import ast 3 | from pip._vendor._markerlib.markers import default_environment, compile, interpret 4 | except ImportError: 5 | if 'ast' in globals(): 6 | raise 7 | def default_environment(): 8 | return {} 9 | def compile(marker): 10 | def marker_fn(environment=None, override=None): 11 | # 'empty markers are True' heuristic won't install extra deps. 12 | return not marker.strip() 13 | marker_fn.__doc__ = marker 14 | return marker_fn 15 | def interpret(marker, environment=None, override=None): 16 | return compile(marker)() 17 | -------------------------------------------------------------------------------- /Scripts/redirecthandle.py: -------------------------------------------------------------------------------- 1 | # by error434 2 | # copyrighted © 2020 3 | # This is script is to be used for ethical purposes only 4 | 5 | import urllib2 6 | 7 | 8 | class SmartRedirectHandler(urllib2.HTTPRedirectHandler): 9 | def http_error_301(self, req, fp, code, msg, headers): 10 | result = urllib2.HTTPRedirectHandler.http_error_301(self, req, fp, code, msg, headers) 11 | result.status = headers 12 | return result 13 | 14 | def http_error_302(self, req, fp, code, msg, headers): 15 | result = urllib2.HTTPRedirectHandler.http_error_302(self, req, fp, code, msg, headers) 16 | result.status = headers 17 | return result 18 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/requests/packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- 1 | # For backwards compatibility, provide imports that used to be here. 2 | from .connection import is_connection_dropped 3 | from .request import make_headers 4 | from .response import is_fp_closed 5 | from .ssl_ import ( 6 | SSLContext, 7 | HAS_SNI, 8 | assert_fingerprint, 9 | resolve_cert_reqs, 10 | resolve_ssl_version, 11 | ssl_wrap_socket, 12 | ) 13 | from .timeout import ( 14 | current_time, 15 | Timeout, 16 | ) 17 | 18 | from .retry import Retry 19 | from .url import ( 20 | get_host, 21 | parse_url, 22 | split_first, 23 | Url, 24 | ) 25 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/__main__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import os 4 | import sys 5 | 6 | # If we are running from a wheel, add the wheel to sys.path 7 | # This allows the usage python pip-*.whl/pip install pip-*.whl 8 | if __package__ == '': 9 | # __file__ is pip-*.whl/pip/__main__.py 10 | # first dirname call strips of '/__main__.py', second strips off '/pip' 11 | # Resulting path is the name of the wheel itself 12 | # Add that to sys.path so we can import pip 13 | path = os.path.dirname(os.path.dirname(__file__)) 14 | sys.path.insert(0, path) 15 | 16 | import pip # noqa 17 | 18 | if __name__ == '__main__': 19 | sys.exit(pip.main()) 20 | -------------------------------------------------------------------------------- /Modules/build/pillow/libImaging/QuantTypes.h: -------------------------------------------------------------------------------- 1 | /* 2 | * The Python Imaging Library 3 | * $Id$ 4 | * 5 | * image quantizer 6 | * 7 | * Written by Toby J Sargeant . 8 | * 9 | * See the README file for information on usage and redistribution. 10 | */ 11 | 12 | #ifndef __TYPES_H__ 13 | #define __TYPES_H__ 14 | 15 | #ifdef _MSC_VER 16 | typedef unsigned __int32 uint32_t; 17 | typedef unsigned __int64 uint64_t; 18 | #else 19 | #include 20 | #endif 21 | 22 | typedef union { 23 | struct { 24 | unsigned char r,g,b,a; 25 | } c; 26 | struct { 27 | unsigned char v[4]; 28 | } a; 29 | uint32_t v; 30 | } Pixel; 31 | 32 | #endif 33 | -------------------------------------------------------------------------------- /Modules/build/pillow/PIL/_util.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | if bytes is str: 4 | def isStringType(t): 5 | return isinstance(t, basestring) 6 | 7 | def isPath(f): 8 | return isinstance(f, basestring) 9 | else: 10 | def isStringType(t): 11 | return isinstance(t, str) 12 | 13 | def isPath(f): 14 | return isinstance(f, (bytes, str)) 15 | 16 | 17 | # Checks if an object is a string, and that it points to a directory. 18 | def isDirectory(f): 19 | return isPath(f) and os.path.isdir(f) 20 | 21 | 22 | class deferred_error(object): 23 | def __init__(self, ex): 24 | self.ex = ex 25 | 26 | def __getattr__(self, elt): 27 | raise self.ex 28 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/_markerlib/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import ast 3 | from pip._vendor._markerlib.markers import default_environment, compile, interpret 4 | except ImportError: 5 | if 'ast' in globals(): 6 | raise 7 | def default_environment(): 8 | return {} 9 | def compile(marker): 10 | def marker_fn(environment=None, override=None): 11 | # 'empty markers are True' heuristic won't install extra deps. 12 | return not marker.strip() 13 | marker_fn.__doc__ = marker 14 | return marker_fn 15 | def interpret(marker, environment=None, override=None): 16 | return compile(marker)() 17 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/renderPM/libart_lgpl/README: -------------------------------------------------------------------------------- 1 | This is the LGPL'd component of libart. All functions needed for 2 | running the Gnome canvas, and for printing support, will be going in 3 | here. The GPL'd component will be getting various enhanced functions 4 | for specific applications. 5 | 6 | Libart is free software. It is also for sale. For information about 7 | licensing libart, please contact Raph Levien 8 | . Contributions to the codebase are also very welcome, 9 | but the copyright must be assigned in writing to preserve the 10 | licensing flexibility. 11 | 12 | 13 | For more information about libart, see the web page: 14 | 15 | http://www.levien.com/libart/ 16 | -------------------------------------------------------------------------------- /Modules/build/pillow/libImaging/Bit.h: -------------------------------------------------------------------------------- 1 | /* Bit.h */ 2 | 3 | typedef struct { 4 | 5 | /* CONFIGURATION */ 6 | 7 | /* Number of bits per pixel */ 8 | int bits; 9 | 10 | /* Line padding (0 or 8) */ 11 | int pad; 12 | 13 | /* Fill order */ 14 | /* 0=msb/msb, 1=msbfill/lsbshift, 2=lsbfill/msbshift, 3=lsb/lsb */ 15 | int fill; 16 | 17 | /* Signed integers (0=unsigned, 1=signed) */ 18 | int sign; 19 | 20 | /* Lookup table (not implemented) */ 21 | unsigned long lutsize; 22 | FLOAT32* lut; 23 | 24 | /* INTERNAL */ 25 | unsigned long mask; 26 | unsigned long signmask; 27 | unsigned long bitbuffer; 28 | int bitcount; 29 | 30 | } BITSTATE; 31 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/show_mcidas.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | import sys 3 | sys.path.insert(0, ".") 4 | 5 | from PIL import Image 6 | from PIL import ImageMath 7 | 8 | try: 9 | filename = sys.argv[1] 10 | except IndexError: 11 | filename = "../pil-archive/goes12.2005.140.190925.BAND_01.mcidas" 12 | # filename = "../pil-archive/goes12.2005.140.190925.BAND_01.im" 13 | 14 | im = Image.open(filename) 15 | 16 | print(im.format) 17 | print(im.mode) 18 | print(im.size) 19 | print(im.tile) 20 | 21 | lo, hi = im.getextrema() 22 | 23 | print("map", lo, hi, "->", end=' ') 24 | im = ImageMath.eval("convert(im*255/hi, 'L')", im=im, hi=hi) 25 | print(im.getextrema()) 26 | 27 | im.show() 28 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/__main__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import os 4 | import sys 5 | 6 | # If we are running from a wheel, add the wheel to sys.path 7 | # This allows the usage python pip-*.whl/pip install pip-*.whl 8 | if __package__ == '': 9 | # __file__ is pip-*.whl/pip/__main__.py 10 | # first dirname call strips of '/__main__.py', second strips off '/pip' 11 | # Resulting path is the name of the wheel itself 12 | # Add that to sys.path so we can import pip 13 | path = os.path.dirname(os.path.dirname(__file__)) 14 | sys.path.insert(0, path) 15 | 16 | import pip # noqa 17 | 18 | if __name__ == '__main__': 19 | sys.exit(pip.main()) 20 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/renderPM/tr.py: -------------------------------------------------------------------------------- 1 | from reportlab.rl_config import T1SearchPath 2 | T1SearchPath.insert(0,'C:\\Python\\PyArt\\pdffonts') 3 | import _renderPM 4 | from time import time 5 | from reportlab.pdfbase.pdfmetrics import getFont 6 | from reportlab.pdfbase._fontdata import standardFonts 7 | g = _renderPM.gstate(200,200) 8 | g.ctm = (1,0,0,1,0,0) 9 | 10 | N=20 11 | t0 = time() 12 | for i in range(N): 13 | for k in standardFonts: 14 | f = getFont(k) 15 | print(k, f.face.findT1File()) 16 | _renderPM.makeT1Font(k,f.face.findT1File(),f.encoding.vector) 17 | 18 | _renderPM.delCache() 19 | print('Reading %d standard fonts %d times took %.2f seconds' % (len(standardFonts),N,time()-t0)) 20 | -------------------------------------------------------------------------------- /Scripts/setup.py: -------------------------------------------------------------------------------- 1 | # by error434 2 | # copyrighted © 2020 3 | # This is script is to be used for ethical purposes only 4 | 5 | #!/usr/bin/env python 6 | # This file is Copyright David Francos Cuartero, licensed under the GPL2 license. 7 | 8 | from distutils.core import setup 9 | 10 | setup(name='airgraph-ng', 11 | version='1.1', 12 | description='Aircrack-ng network grapher', 13 | author='TheX1le', 14 | console=[{"script": "airgraph-ng"}], 15 | url='http://aircrack-ng.org', 16 | license='GPL2', 17 | classifiers=[ 18 | 'Development Status :: 4 - Beta', 19 | ], 20 | packages=['graphviz'], 21 | scripts=['dump-join', 'airgraph-ng'], 22 | ) 23 | -------------------------------------------------------------------------------- /Modules/build/pillow/build/lib.linux-i686-2.7/PIL/_util.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | if bytes is str: 4 | def isStringType(t): 5 | return isinstance(t, basestring) 6 | 7 | def isPath(f): 8 | return isinstance(f, basestring) 9 | else: 10 | def isStringType(t): 11 | return isinstance(t, str) 12 | 13 | def isPath(f): 14 | return isinstance(f, (bytes, str)) 15 | 16 | 17 | # Checks if an object is a string, and that it points to a directory. 18 | def isDirectory(f): 19 | return isPath(f) and os.path.isdir(f) 20 | 21 | 22 | class deferred_error(object): 23 | def __init__(self, ex): 24 | self.ex = ex 25 | 26 | def __getattr__(self, elt): 27 | raise self.ex 28 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012-2014 Vinay Sajip. 4 | # Licensed to the Python Software Foundation under a contributor agreement. 5 | # See LICENSE.txt and CONTRIBUTORS.txt. 6 | # 7 | import logging 8 | 9 | __version__ = '0.2.1' 10 | 11 | class DistlibException(Exception): 12 | pass 13 | 14 | try: 15 | from logging import NullHandler 16 | except ImportError: # pragma: no cover 17 | class NullHandler(logging.Handler): 18 | def handle(self, record): pass 19 | def emit(self, record): pass 20 | def createLock(self): self.lock = None 21 | 22 | logger = logging.getLogger(__name__) 23 | logger.addHandler(NullHandler()) 24 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/requests/packages/urllib3/util/response.py: -------------------------------------------------------------------------------- 1 | def is_fp_closed(obj): 2 | """ 3 | Checks whether a given file-like object is closed. 4 | 5 | :param obj: 6 | The file-like object to check. 7 | """ 8 | 9 | try: 10 | # Check via the official file-like-object way. 11 | return obj.closed 12 | except AttributeError: 13 | pass 14 | 15 | try: 16 | # Check if the object is a container for another file-like object that 17 | # gets released on exhaustion (e.g. HTTPResponse). 18 | return obj.fp is None 19 | except AttributeError: 20 | pass 21 | 22 | raise ValueError("Unable to determine whether fp is closed.") 23 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/test_image_rotate.py: -------------------------------------------------------------------------------- 1 | from helper import unittest, PillowTestCase, hopper 2 | 3 | 4 | class TestImageRotate(PillowTestCase): 5 | 6 | def test_rotate(self): 7 | def rotate(mode): 8 | im = hopper(mode) 9 | out = im.rotate(45) 10 | self.assertEqual(out.mode, mode) 11 | self.assertEqual(out.size, im.size) # default rotate clips output 12 | out = im.rotate(45, expand=1) 13 | self.assertEqual(out.mode, mode) 14 | self.assertNotEqual(out.size, im.size) 15 | for mode in "1", "P", "L", "RGB", "I", "F": 16 | rotate(mode) 17 | 18 | 19 | if __name__ == '__main__': 20 | unittest.main() 21 | 22 | # End of file 23 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012-2014 Vinay Sajip. 4 | # Licensed to the Python Software Foundation under a contributor agreement. 5 | # See LICENSE.txt and CONTRIBUTORS.txt. 6 | # 7 | import logging 8 | 9 | __version__ = '0.2.1' 10 | 11 | class DistlibException(Exception): 12 | pass 13 | 14 | try: 15 | from logging import NullHandler 16 | except ImportError: # pragma: no cover 17 | class NullHandler(logging.Handler): 18 | def handle(self, record): pass 19 | def emit(self, record): pass 20 | def createLock(self): self.lock = None 21 | 22 | logger = logging.getLogger(__name__) 23 | logger.addHandler(NullHandler()) 24 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/requests/packages/urllib3/util/response.py: -------------------------------------------------------------------------------- 1 | def is_fp_closed(obj): 2 | """ 3 | Checks whether a given file-like object is closed. 4 | 5 | :param obj: 6 | The file-like object to check. 7 | """ 8 | 9 | try: 10 | # Check via the official file-like-object way. 11 | return obj.closed 12 | except AttributeError: 13 | pass 14 | 15 | try: 16 | # Check if the object is a container for another file-like object that 17 | # gets released on exhaustion (e.g. HTTPResponse). 18 | return obj.fp is None 19 | except AttributeError: 20 | pass 21 | 22 | raise ValueError("Unable to determine whether fp is closed.") 23 | -------------------------------------------------------------------------------- /Modules/build/pillow/libImaging/QuantHeap.h: -------------------------------------------------------------------------------- 1 | /* 2 | * The Python Imaging Library 3 | * $Id$ 4 | * 5 | * image quantizer 6 | * 7 | * Written by Toby J Sargeant . 8 | * 9 | * See the README file for information on usage and redistribution. 10 | */ 11 | 12 | #ifndef __QUANTHEAP_H__ 13 | #define __QUANTHEAP_H__ 14 | 15 | #include "QuantTypes.h" 16 | 17 | typedef struct _Heap Heap; 18 | 19 | typedef int (*HeapCmpFunc)(const Heap *,const void *,const void *); 20 | 21 | void ImagingQuantHeapFree(Heap *); 22 | int ImagingQuantHeapRemove(Heap *,void **); 23 | int ImagingQuantHeapAdd(Heap *,void *); 24 | int ImagingQuantHeapTop(Heap *,void **); 25 | Heap *ImagingQuantHeapNew(HeapCmpFunc); 26 | 27 | #endif // __QUANTHEAP_H__ 28 | -------------------------------------------------------------------------------- /Modules/build/pip/docs/reference/pip_uninstall.rst: -------------------------------------------------------------------------------- 1 | .. _`pip uninstall`: 2 | 3 | pip uninstall 4 | ------------- 5 | 6 | .. contents:: 7 | 8 | Usage 9 | ***** 10 | 11 | .. pip-command-usage:: uninstall 12 | 13 | Description 14 | *********** 15 | 16 | .. pip-command-description:: uninstall 17 | 18 | Options 19 | ******* 20 | 21 | .. pip-command-options:: uninstall 22 | 23 | 24 | Examples 25 | ******** 26 | 27 | 1) Uninstall a package. 28 | 29 | :: 30 | 31 | $ pip uninstall simplejson 32 | Uninstalling simplejson: 33 | /home/me/env/lib/python2.7/site-packages/simplejson 34 | /home/me/env/lib/python2.7/site-packages/simplejson-2.2.1-py2.7.egg-info 35 | Proceed (y/n)? y 36 | Successfully uninstalled simplejson 37 | 38 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | certs.py 6 | ~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. 9 | 10 | If you are packaging Requests, e.g., for a Linux distribution or a managed 11 | environment, you can change the definition of where() to return a separately 12 | packaged CA bundle. 13 | """ 14 | import os.path 15 | 16 | try: 17 | from certifi import where 18 | except ImportError: 19 | def where(): 20 | """Return the preferred certificate bundle.""" 21 | # vendored bundle inside Requests 22 | return os.path.join(os.path.dirname(__file__), 'cacert.pem') 23 | 24 | if __name__ == '__main__': 25 | print(where()) 26 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/html5lib/filters/alphabeticalattributes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from . import _base 4 | 5 | try: 6 | from collections import OrderedDict 7 | except ImportError: 8 | from ordereddict import OrderedDict 9 | 10 | 11 | class Filter(_base.Filter): 12 | def __iter__(self): 13 | for token in _base.Filter.__iter__(self): 14 | if token["type"] in ("StartTag", "EmptyTag"): 15 | attrs = OrderedDict() 16 | for name, value in sorted(token["data"].items(), 17 | key=lambda x: x[0]): 18 | attrs[name] = value 19 | token["data"] = attrs 20 | yield token 21 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | certs.py 6 | ~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. 9 | 10 | If you are packaging Requests, e.g., for a Linux distribution or a managed 11 | environment, you can change the definition of where() to return a separately 12 | packaged CA bundle. 13 | """ 14 | import os.path 15 | 16 | try: 17 | from certifi import where 18 | except ImportError: 19 | def where(): 20 | """Return the preferred certificate bundle.""" 21 | # vendored bundle inside Requests 22 | return os.path.join(os.path.dirname(__file__), 'cacert.pem') 23 | 24 | if __name__ == '__main__': 25 | print(where()) 26 | -------------------------------------------------------------------------------- /Modules/build/pip/build/lib.linux-i686-2.7/pip/_vendor/html5lib/filters/alphabeticalattributes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from . import _base 4 | 5 | try: 6 | from collections import OrderedDict 7 | except ImportError: 8 | from ordereddict import OrderedDict 9 | 10 | 11 | class Filter(_base.Filter): 12 | def __iter__(self): 13 | for token in _base.Filter.__iter__(self): 14 | if token["type"] in ("StartTag", "EmptyTag"): 15 | attrs = OrderedDict() 16 | for name, value in sorted(token["data"].items(), 17 | key=lambda x: x[0]): 18 | attrs[name] = value 19 | token["data"] = attrs 20 | yield token 21 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/reference/ImageQt.rst: -------------------------------------------------------------------------------- 1 | .. py:module:: PIL.ImageQt 2 | .. py:currentmodule:: PIL.ImageQt 3 | 4 | :py:mod:`ImageQt` Module 5 | ======================== 6 | 7 | The :py:mod:`ImageQt` module contains support for creating PyQt4 or PyQt5 QImage objects 8 | from PIL images. 9 | 10 | .. versionadded:: 1.1.6 11 | 12 | .. py:class:: ImageQt.ImageQt(image) 13 | 14 | Creates an :py:class:`~PIL.ImageQt.ImageQt` object from a PIL 15 | :py:class:`~PIL.Image.Image` object. This class is a subclass of 16 | QtGui.QImage, which means that you can pass the resulting objects directly 17 | to PyQt4/5 API functions and methods. 18 | 19 | This operation is currently supported for mode 1, L, P, RGB, and RGBA 20 | images. To handle other modes, you need to convert the image first. 21 | -------------------------------------------------------------------------------- /Modules/build/pillow/Scripts/gifmaker.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # 3 | # The Python Imaging Library 4 | # $Id$ 5 | # 6 | # convert sequence format to GIF animation 7 | # 8 | # history: 9 | # 97-01-03 fl created 10 | # 11 | # Copyright (c) Secret Labs AB 1997. All rights reserved. 12 | # Copyright (c) Fredrik Lundh 1997. 13 | # 14 | # See the README file for information on usage and redistribution. 15 | # 16 | 17 | from __future__ import print_function 18 | 19 | from PIL import Image 20 | 21 | if __name__ == "__main__": 22 | 23 | import sys 24 | 25 | if len(sys.argv) < 3: 26 | print("GIFMAKER -- create GIF animations") 27 | print("Usage: gifmaker infile outfile") 28 | sys.exit(1) 29 | 30 | im = Image.open(sys.argv[1]) 31 | im.save(sys.argv[2], save_all=True) 32 | -------------------------------------------------------------------------------- /Modules/build/pip/docs/reference/pip_list.rst: -------------------------------------------------------------------------------- 1 | .. _`pip list`: 2 | 3 | pip list 4 | --------- 5 | 6 | .. contents:: 7 | 8 | Usage 9 | ***** 10 | 11 | .. pip-command-usage:: list 12 | 13 | Description 14 | *********** 15 | 16 | .. pip-command-description:: list 17 | 18 | Options 19 | ******* 20 | 21 | .. pip-command-options:: list 22 | 23 | .. pip-index-options:: 24 | 25 | 26 | Examples 27 | ******** 28 | 29 | 1) List installed packages. 30 | 31 | :: 32 | 33 | $ pip list 34 | docutils (0.10) 35 | Jinja2 (2.7.2) 36 | MarkupSafe (0.18) 37 | Pygments (1.6) 38 | Sphinx (1.2.1) 39 | 40 | 2) List outdated packages (excluding editables), and the latest version available 41 | 42 | :: 43 | 44 | $ pip list --outdated 45 | docutils (Current: 0.10 Latest: 0.11) 46 | Sphinx (Current: 1.2.1 Latest: 1.2.2) 47 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/rl_accel/tests/getrc.py: -------------------------------------------------------------------------------- 1 | def getrc(defns,depth=1): 2 | from sys import getrefcount, _getframe 3 | f = _getframe(depth) 4 | G0 = f.f_globals 5 | L = f.f_locals 6 | if L is not G0: 7 | LL = [L] 8 | while 1: 9 | f = f.f_back 10 | G = f.f_globals 11 | L = f.f_locals 12 | if G is not G0 or G is L: break 13 | LL.append(L) 14 | L = {} 15 | for l in reversed(LL): 16 | L.update(l) 17 | else: 18 | L = L.copy() 19 | G0 = G0.copy() 20 | return [getrefcount(eval(x,L,G0))-1 for x in defns.split()] 21 | 22 | def checkrc(defns,rcv0): 23 | rcv1 = getrc(defns,2) 24 | return ' '.join(["%s %d-->%d" % (x,v,w) for x,v,w in zip(defns.split(),rcv0,rcv1) if v!=w]) 25 | -------------------------------------------------------------------------------- /Modules/build/pip/docs/reference/pip_freeze.rst: -------------------------------------------------------------------------------- 1 | 2 | .. _`pip freeze`: 3 | 4 | pip freeze 5 | ----------- 6 | 7 | .. contents:: 8 | 9 | Usage 10 | ***** 11 | 12 | .. pip-command-usage:: freeze 13 | 14 | 15 | Description 16 | *********** 17 | 18 | .. pip-command-description:: freeze 19 | 20 | 21 | Options 22 | ******* 23 | 24 | .. pip-command-options:: freeze 25 | 26 | 27 | Examples 28 | ******** 29 | 30 | 1) Generate output suitable for a requirements file. 31 | 32 | :: 33 | 34 | $ pip freeze 35 | docutils==0.11 36 | Jinja2==2.7.2 37 | MarkupSafe==0.19 38 | Pygments==1.6 39 | Sphinx==1.2.2 40 | 41 | 42 | 2) Generate a requirements file and then install from it in another environment. 43 | 44 | :: 45 | 46 | $ env1/bin/pip freeze > requirements.txt 47 | $ env2/bin/pip install -r requirements.txt 48 | -------------------------------------------------------------------------------- /Modules/build/reportlab/src/rl_addons/renderPM/libart_lgpl/config.h: -------------------------------------------------------------------------------- 1 | /* config.h. Generated automatically by configure. */ 2 | /* config.h.in. Generated automatically from configure.in by autoheader. */ 3 | 4 | /* Define if your processor stores words with the most significant 5 | byte first (like Motorola and SPARC, unlike Intel and VAX). */ 6 | #ifdef macintosh 7 | # define WORDS_BIGENDIAN 8 | #else 9 | /* #undef WORDS_BIGENDIAN */ 10 | #endif 11 | 12 | /*allegedly this will take care of 'FAT' binaries in OS X*/ 13 | #if defined(__LITTLE_ENDIAN__) 14 | # undef WORDS_BIGENDIAN 15 | #elif defined(__BIG_ENDIAN__) 16 | # undef WORDS_BIGENDIAN 17 | # define WORDS_BIGENDIAN 1 18 | #endif 19 | 20 | /* Name of package */ 21 | #define PACKAGE "libart_lgpl" 22 | 23 | /* Version number of package */ 24 | #define VERSION "2.3.10" 25 | -------------------------------------------------------------------------------- /Modules/build/pillow/Tests/test_image_offset.py: -------------------------------------------------------------------------------- 1 | from helper import unittest, PillowTestCase, hopper 2 | 3 | 4 | class TestImageOffset(PillowTestCase): 5 | 6 | def test_offset(self): 7 | 8 | im1 = hopper() 9 | 10 | im2 = self.assert_warning(DeprecationWarning, lambda: im1.offset(10)) 11 | self.assertEqual(im1.getpixel((0, 0)), im2.getpixel((10, 10))) 12 | 13 | im2 = self.assert_warning( 14 | DeprecationWarning, lambda: im1.offset(10, 20)) 15 | self.assertEqual(im1.getpixel((0, 0)), im2.getpixel((10, 20))) 16 | 17 | im2 = self.assert_warning( 18 | DeprecationWarning, lambda: im1.offset(20, 20)) 19 | self.assertEqual(im1.getpixel((0, 0)), im2.getpixel((20, 20))) 20 | 21 | 22 | if __name__ == '__main__': 23 | unittest.main() 24 | 25 | # End of file 26 | -------------------------------------------------------------------------------- /Modules/build/pillow/docs/reference/ImagePalette.rst: -------------------------------------------------------------------------------- 1 | .. py:module:: PIL.ImagePalette 2 | .. py:currentmodule:: PIL.ImagePalette 3 | 4 | :py:mod:`ImagePalette` Module 5 | ============================= 6 | 7 | The :py:mod:`ImagePalette` module contains a class of the same name to 8 | represent the color palette of palette mapped images. 9 | 10 | .. note:: 11 | 12 | This module was never well-documented. It hasn't changed since 2001, 13 | though, so it's probably safe for you to read the source code and puzzle 14 | out the internals if you need to. 15 | 16 | The :py:class:`~PIL.ImagePalette.ImagePalette` class has several methods, 17 | but they are all marked as "experimental." Read that as you will. The 18 | ``[source]`` link is there for a reason. 19 | 20 | .. autoclass:: PIL.ImagePalette.ImagePalette 21 | :members: 22 | -------------------------------------------------------------------------------- /Modules/build/pip/pip/_vendor/html5lib/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | HTML parsing library based on the WHATWG "HTML5" 3 | specification. The parser is designed to be compatible with existing 4 | HTML found in the wild and implements well-defined error recovery that 5 | is largely compatible with modern desktop web browsers. 6 | 7 | Example usage: 8 | 9 | import html5lib 10 | f = open("my_document.html") 11 | tree = html5lib.parse(f) 12 | """ 13 | 14 | from __future__ import absolute_import, division, unicode_literals 15 | 16 | from .html5parser import HTMLParser, parse, parseFragment 17 | from .treebuilders import getTreeBuilder 18 | from .treewalkers import getTreeWalker 19 | from .serializer import serialize 20 | 21 | __all__ = ["HTMLParser", "parse", "parseFragment", "getTreeBuilder", 22 | "getTreeWalker", "serialize"] 23 | __version__ = "1.0b5" 24 | --------------------------------------------------------------------------------