summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #12567: Add curses.unget_wch() functionVictor Stinner2011-09-051-0/+3
| | | | Push a character so the next get_wch() will return it.
* Issue #9561: packaging now writes egg-info files using UTF-8Victor Stinner2011-09-051-1/+1
| | | | instead of the locale encoding
* Merge 3.2: Issue #9561: distutils now reads and writes egg-info files using ↵Victor Stinner2011-09-051-0/+3
|\ | | | | | | | | | | UTF-8 instead of the locale encoding.
| * Issue #9561: distutils now reads and writes egg-info files using UTF-8Victor Stinner2011-09-051-1/+4
| | | | | | | | instead of the locale encoding.
| * Branch mergeÉric Araujo2011-09-051-0/+3
| |\
| | * Branch mergeÉric Araujo2011-09-041-0/+3
| | |\
* | | \ Branch mergeÉric Araujo2011-09-051-0/+3
|\ \ \ \
| * \ \ \ Branch mergeÉric Araujo2011-09-041-0/+3
| |\ \ \ \
| | * \ \ \ Merge fix for #8286 from 3.2Éric Araujo2011-09-021-0/+3
| | |\ \ \ \ | | | | |_|/ | | | |/| |
| | | * | | Warn instead of crashing because of invalid path in MANIFEST.in (#8286).Éric Araujo2011-09-021-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sdist used to crash with a full traceback dump instead of printing a nice warning with the faulty line number.
* | | | | | Merge with 3.2: Issue #12841: Fix tarfile extraction of non-existent uids/gids.Lars Gustäbel2011-09-051-0/+5
|\ \ \ \ \ \ | | |_|_|/ / | |/| | | |
| * | | | | Issue #12841: Fix tarfile extraction of non-existent uids/gids.Lars Gustäbel2011-09-051-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tarfile unnecessarily checked the existence of numerical user and group ids on extraction. If one of them did not exist the respective id of the current user (i.e. root) was used for the file and ownership information was lost. (Patch by Sebastien Luttringer)
* | | | | | #12888: merge with 3.2.Ezio Melotti2011-09-052-0/+4
|\ \ \ \ \ \ | |/ / / / /
| * | | | | #12888: Fix a bug in HTMLParser.unescape that prevented it to escape more ↵Ezio Melotti2011-09-052-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | than 128 entities. Patch by Peter Otten.
| * | | | | Merge with release clone.Georg Brandl2011-09-042-17/+33
| |\ \ \ \ \
| | * | | | | Bump to 3.2.2.Georg Brandl2011-09-032-2/+2
| | | | | | |
| | * | | | | Make bdist_* commands respect --skip-build passed to bdist (#10946)Éric Araujo2011-08-291-0/+3
| | | | | | |
| | * | | | | Issue #12678: Fix distutils sdist test on Windows.Nadeem Vawda2011-08-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch by Jeremy Kloth.
| | * | | | | accept bytes for the AST 'string' typeBenjamin Peterson2011-09-011-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a temporary kludge and all is well in 3.3.
| | * | | | | Fix-up NEWS merge.Georg Brandl2011-09-031-4/+6
| | | | | | |
| | * | | | | Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed toAmaury Forgeot d'Arc2011-08-301-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | some functions like file.write().
| | * | | | | Issue #12839: Fix crash in zlib module due to version mismatch.Nadeem Vawda2011-08-282-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the version of zlib used to compile the zlib module is incompatible with the one that is actually linked in, then calls into zlib will fail. This can leave attributes of the z_stream uninitialized, so we must take care to avoid segfaulting by trying to use an invalid pointer. Fix by Richard M. Tew.
| | * | | | | Issue #12326: sys.platform is now always 'linux2' on LinuxVictor Stinner2011-08-201-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Even if Python is compiled on Linux 3.
| | * | | | | Post-release steps.Georg Brandl2011-08-131-0/+12
| | | | | | |
| | * | | | | Merge with cpython.Georg Brandl2011-08-131-0/+3
| | |\ \ \ \ \
| | * | | | | | Bump version to 3.2.2rc1.Georg Brandl2011-08-132-4/+4
| | | | | | | |
* | | | | | | | Merge with 3.2.Georg Brandl2011-09-041-1/+1
|\ \ \ \ \ \ \ \ | |/ / / / / / / | | | | / / / / | |_|_|/ / / / |/| | | | | |
| * | | | | | Typo fix.Georg Brandl2011-09-041-1/+1
| | |_|_|_|/ | |/| | | |
* | | | | | merge 3.2 (#12878)Benjamin Peterson2011-09-031-0/+2
|\ \ \ \ \ \ | |/ / / / /
| * | | | | add a __dict__ descr for IOBase (closes #12878)Benjamin Peterson2011-09-031-0/+2
| | | | | |
* | | | | | Merge from 3.2: Issue #12764: Fix a crash in ctypes when the name of aAmaury Forgeot d'Arc2011-09-021-0/+3
|\ \ \ \ \ \ | |/ / / / / | | | | / / | |_|_|/ / |/| | | | Structure field is not a string.
| * | | | Issue #12764: Fix a crash in ctypes when the name of a Structure field is notAmaury Forgeot d'Arc2011-09-021-0/+3
| | |_|/ | |/| | | | | | | | | | a string.
* | | | Merge 3.2: Issue #12636: IDLE reads the coding cookie when executing a ↵Victor Stinner2011-09-011-0/+2
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | Python script. And "IDLE: fix some RessourceWarning, reuse tokenize.open()"
| * | | Issue #12636: IDLE reads the coding cookie when executing a Python script.Victor Stinner2011-09-011-0/+2
| | | |
* | | | Issue #12494: Close pipes and kill process on error in subprocess functionsVictor Stinner2011-09-011-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | On error, call(), check_call(), check_output() and getstatusoutput() functions of the subprocess module now kill the process, read its status (to avoid zombis) and close pipes.
* | | | Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is nowAntoine Pitrou2011-09-011-0/+3
|\ \ \ \ | |/ / / | | | | | | | | mapped to POSIX errno ENOTDIR (previously EINVAL).
| * | | Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is nowAntoine Pitrou2011-09-011-0/+3
| | | | | | | | | | | | | | | | mapped to POSIX errno ENOTDIR (previously EINVAL).
| * | | accept bytes for the AST 'string' typeBenjamin Peterson2011-09-011-0/+3
| | | | | | | | | | | | | | | | This is a temporary kludge and all is well in 3.3.
* | | | news note on xattrsBenjamin Peterson2011-09-011-0/+2
| | | |
* | | | Merge from 3.2:Amaury Forgeot d'Arc2011-08-301-0/+5
|\ \ \ \ | |/ / / | | | | | | | | | | | | - Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to file.write() - Issue #11241: subclasses of ctypes.Array can now be subclassed.
| * | | Issue #11241: subclasses of ctypes.Array can now be subclassed.Amaury Forgeot d'Arc2011-08-301-0/+2
| | | |
| * | | Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed toAmaury Forgeot d'Arc2011-08-301-0/+3
| | | | | | | | | | | | | | | | some functions like file.write().
| * | | Branch mergeÉric Araujo2011-08-301-0/+3
| |\ \ \
* | \ \ \ Branch mergeÉric Araujo2011-08-301-0/+4
|\ \ \ \ \
| * | | | | Make bdist_* commands respect --skip-build passed to bdist (#10946).Éric Araujo2011-08-291-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There was already a test for this, but it was complicated and had a subtle bug (custom command objects need to be put in dist.command_obj so that other command objects may see them) that rendered it moot.
| * | | | | Merge fix for #10946 from 3.2Éric Araujo2011-08-291-0/+3
| |\ \ \ \ \ | | | |/ / / | | |/| | |
| | * | | | Make bdist_* commands respect --skip-build passed to bdist (#10946)Éric Araujo2011-08-291-0/+3
| | | | | |
* | | | | | Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments inAntoine Pitrou2011-08-291-0/+3
|\ \ \ \ \ \ | | |_|/ / / | |/| | | | | | | | | | the C pickle implementation.
| * | | | | Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments inAntoine Pitrou2011-08-291-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | the C pickle implementation.
* | | | | | Issue #11564: Avoid crashes when trying to pickle huge objects or containersAntoine Pitrou2011-08-291-0/+3
|\ \ \ \ \ \ | |/ / / / / | | / / / / | |/ / / / |/| | | | (more than 2**31 items). Instead, in most cases, an OverflowError is raised.