Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [3.11] Correct description of inheriting from another class (GH-114660) ↵ | Miss Islington (bot) | 2024-02-01 | 1 | -2/+1 |
| | | | | | | | | (#114869) "inherits <someclass>" grates to this reader. I think it should be "inherits from <someclass>". (cherry picked from commit c9c6e04380ffedd25ea2e582f9057ab9612960c9) Co-authored-by: Skip Montanaro <skip.montanaro@gmail.com> | ||||
* | [3.11] gh-101100: Fix Sphinx reference warnings (GH-112416) (#112422) | Hugo van Kemenade | 2023-11-26 | 1 | -1/+1 |
| | |||||
* | [3.11] gh-108826: Document `dis` module CLI and rename `_test` function to ↵ | Hugo van Kemenade | 2023-10-11 | 1 | -0/+2 |
| | | | | | | | | `main` (#108827) (#110689) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: Radislav Chugunov <52372310+chgnrdv@users.noreply.github.com> | ||||
* | [3.11] Docs: Avoid the deprecated ``.. cmdoption::`` directive (GH-110292) ↵ | Adam Turner | 2023-10-05 | 1 | -5/+5 |
| | | | | | | (#110303) [3.11] Docs: Avoid the deprecated ``.. cmdoption::`` directive (GH-110292). (cherry picked from commit 77e9aae3837d9f0cf87461d023896f2c4aeb282f) | ||||
* | [3.11] gh-101100: Sphinx warnings: pick the low hanging fruits (GH-107386) ↵ | Miss Islington (bot) | 2023-07-29 | 1 | -2/+2 |
| | | | | | | | (GH-107418) (cherry picked from commit f2d07d3289947d10b065b2bb7670c8fb6b6582f2) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> | ||||
* | [3.11] gh-106892: Use roles :data: and :const: for referencing module ↵ | Serhiy Storchaka | 2023-07-21 | 1 | -1/+1 |
| | | | | | variables (GH-106894) (GH-106955) (cherry picked from commit d036db728ea3d54509cbad06df74e2d9a31fbec8) | ||||
* | [3.11] gh-101100: Document PyObject_ClearWeakRefs, gzip's name, and ↵ | Hugo van Kemenade | 2023-03-25 | 1 | -0/+6 |
| | | | | asyncio.iscoroutine (#103001) | ||||
* | bpo-43613: Faster implementation of gzip.compress and gzip.decompress (GH-27941) | Ruben Vorderman | 2021-09-02 | 1 | -3/+14 |
| | | | Co-authored-by: Łukasz Langa <lukasz@langa.pl> | ||||
* | bpo-28286: Deprecate opening GzipFile for writing implicitly. (GH-16417) | Serhiy Storchaka | 2019-11-16 | 1 | -1/+6 |
| | | | | Always specify the mode argument for writing. | ||||
* | bpo-6584: Add a BadGzipFile exception to the gzip module. (GH-13022) | Zackery Spytz | 2019-05-13 | 1 | -0/+8 |
| | | | | | Co-Authored-By: Filip Gruszczyński <gruszczy@gmail.com> Co-Authored-By: Michele Orrù <maker@tumbolandia.net> | ||||
* | bpo-34898: Add mtime parameter to gzip.compress(). (GH-9704) | guoci | 2018-11-07 | 1 | -2/+4 |
| | | | | | Without setting mtime, time.time() will be used as the timestamp which will end up in the compressed data and each invocation of the compress() function will vary over time. | ||||
* | bpo-35167: Specify program for gzip and json.tool command line options. ↵ | Serhiy Storchaka | 2018-11-05 | 1 | -0/+3 |
| | | | | (GH-10332) | ||||
* | bpo-34969: Add --fast, --best on the gzip CLI (GH-9833) | Stéphane Wirtel | 2018-11-03 | 1 | -7/+8 |
| | |||||
* | bpo-34913: Document gzip command line interface (GH-9782) | Stéphane Wirtel | 2018-10-10 | 1 | -0/+35 |
| | |||||
* | Issue #28227: gzip now supports pathlib | Berker Peksag | 2016-10-02 | 1 | -0/+5 |
| | | | | Patch by Ethan Furman. | ||||
* | Issue #25523: Merge a-to-an corrections from 3.4. | Serhiy Storchaka | 2015-11-02 | 1 | -1/+1 |
|\ | |||||
| * | Issue #25523: Further a-to-an corrections. | Serhiy Storchaka | 2015-11-02 | 1 | -1/+1 |
| | | |||||
* | | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 | Martin Panter | 2015-11-02 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 1 | -1/+1 |
| | | | | | | | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar. | ||||
* | | #21146: give a more efficient recipe in gzip docs | Andrew Kuchling | 2015-04-14 | 1 | -1/+2 |
| | | |||||
* | | Issue #23529: Limit the size of decompressed data when reading from | Antoine Pitrou | 2015-04-10 | 1 | -10/+20 |
| | | | | | | | | | | | | | | | | GzipFile, BZ2File or LZMAFile. This defeats denial of service attacks using compressed bombs (i.e. compressed payloads which decompress to a huge size). Patch by Martin Panter and Nikolaus Rath. | ||||
* | | Issue #23688: Added support of arbitrary bytes-like objects and avoided | Serhiy Storchaka | 2015-03-23 | 1 | -0/+4 |
|/ | | | | | unnecessary copying of memoryview in gzip.GzipFile.write(). Original patch by Wolfgang Maier. | ||||
* | Closes #18430: Document that peek() may change the position of the underlying | Nadeem Vawda | 2013-12-08 | 1 | -0/+5 |
|\ | | | | | | | file for the BZ2File, GzipFile and LZMAFile classes. | ||||
| * | #18430: Document that peek() may change the position of the underlying file for | Nadeem Vawda | 2013-12-08 | 1 | -0/+5 |
| | | | | | | | | the BZ2File, GzipFile and LZMAFile classes. | ||||
* | | Issue #19222: Add support for the 'x' mode to the gzip module. | Nadeem Vawda | 2013-10-18 | 1 | -4/+11 |
|/ | | | | Original patch by Tim Heaney. | ||||
* | Closes #15432: GzipFile mtime argument is new in 3.1. | Georg Brandl | 2013-10-06 | 1 | -5/+3 |
| | |||||
* | Fix typo. | Georg Brandl | 2013-10-06 | 1 | -1/+1 |
| | |||||
* | Issue #18743: Fix references to non-existant "StringIO" module. | Serhiy Storchaka | 2013-08-16 | 1 | -1/+1 |
| | |||||
* | Issue #15677: Document that zlib and gzip accept a compression level of 0 to ↵ | Nadeem Vawda | 2012-11-11 | 1 | -4/+5 |
|\ | | | | | | | | | | | mean 'no compression'. Patch by Brian Brazil. | ||||
| * | Issue #15677: Document that zlib and gzip accept a compression level of 0 to ↵ | Nadeem Vawda | 2012-11-11 | 1 | -3/+4 |
| | | | | | | | | | | | | mean 'no compression'. Patch by Brian Brazil. | ||||
* | | Add fileobj support to gzip.open(). | Nadeem Vawda | 2012-06-04 | 1 | -9/+11 |
| | | |||||
* | | Closes #13989: Add support for text modes to gzip.open(). | Nadeem Vawda | 2012-05-06 | 1 | -12/+34 |
| | | | | | | | | Also, add tests for gzip.open(). | ||||
* | | Merge: #13989: Document that GzipFile does not support text mode. | Nadeem Vawda | 2012-02-11 | 1 | -3/+5 |
|\ \ | |/ | |||||
| * | Issue #13989: Document that GzipFile does not support text mode. | Nadeem Vawda | 2012-02-11 | 1 | -3/+5 |
| | | | | | | | | Also, give a more helpful error message when opened with an invalid mode string. | ||||
* | | Merge edits from 3.2 (#13716, #1040439, #2945, #13770, #6715) | Éric Araujo | 2012-02-05 | 1 | -3/+0 |
|\ \ | |/ | |||||
| * | Improve interlinking of archiving/compression modules docs. | Éric Araujo | 2012-01-16 | 1 | -3/+0 |
| | | | | | | | | | | | | | | | | | | | | - Remove duplicated list of links to the other modules from each module’s doc (people can already go up to library/archiving and there they can see the list). - Link to shutil high-level operations. Reviewed by Nadeem Vawda in #6715. | ||||
* | | Issue #6715: Add module for compression using the LZMA algorithm. | Nadeem Vawda | 2011-11-29 | 1 | -1/+1 |
| | | |||||
* | | Merge from 3.2 . Replace the term members with correct and appropriate ↵ | Senthil Kumaran | 2011-07-04 | 1 | -1/+1 |
|\ \ | |/ | | | | | terminology. Initial patch by Adam Woodbeck. | ||||
| * | issue10403 - Let's not use members anymore. Use 'attribute' where it denotes ↵ | Senthil Kumaran | 2011-07-04 | 1 | -1/+1 |
| | | | | | | | | attribute and 'methods' where it denotes methods. Context should clarify usage. | ||||
* | | Clarify that GzipFile.read1() is now implemented | Antoine Pitrou | 2011-04-04 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Clarify that GzipFile.read1() isn't implemented. | Antoine Pitrou | 2011-04-04 | 1 | -1/+1 |
|/ | |||||
* | More source links | Raymond Hettinger | 2011-01-27 | 1 | -0/+4 |
| | |||||
* | GzipFile.peek improvements, suggested by Nir Aides. | Antoine Pitrou | 2010-10-04 | 1 | -3/+11 |
| | |||||
* | Issue #9962: GzipFile now has the peek() method. | Antoine Pitrou | 2010-09-29 | 1 | -6/+10 |
| | |||||
* | Small fixes in the gzip docs | Antoine Pitrou | 2010-09-23 | 1 | -3/+4 |
| | |||||
* | Issue #1675951: Allow GzipFile to work with unseekable file objects. | Antoine Pitrou | 2010-09-23 | 1 | -0/+3 |
| | | | | Patch by Florian Festi. | ||||
* | Add cross-references to the glossary entry for file objects. | Antoine Pitrou | 2010-09-15 | 1 | -5/+4 |
| | |||||
* | Fix example | Éric Araujo | 2010-08-17 | 1 | -1/+1 |
| | |||||
* | Add versionadded tags | Antoine Pitrou | 2010-08-17 | 1 | -0/+4 |
| | |||||
* | Modernize gzip examples | Antoine Pitrou | 2010-08-17 | 1 | -12/+8 |
| |