summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, useVictor Stinner2010-06-256-64/+61
| | | | "w*" format instead. Add tests for "w*" format.
* getbuffer(): release the buffer on error (if the buffer is not contiguous)Victor Stinner2010-06-241-0/+1
|
* Issue #8682: The ssl module now temporary increments the reference count ofAntoine Pitrou2010-06-242-19/+46
| | | | | a socket object got through `PyWeakref_GetObject`, so as to avoid possible deallocation while the object is still being used.
* PyArg_Parse*() functions: factorize code for s/z and u/Z formatsVictor Stinner2010-06-242-97/+26
|
* Issue #8949: "z" format of PyArg_Parse*() functions doesn't accept bytesVictor Stinner2010-06-243-6/+4
| | | | objects, as described in the documentation.
* Add specification for the Py_IS* macros in pyctype.h.Stefan Krah2010-06-241-0/+3
|
* Blocked revisions 82191 via svnmergeStefan Krah2010-06-240-0/+0
| | | | | | | | | | ........ r82191 | stefan.krah | 2010-06-24 11:33:05 +0200 (Thu, 24 Jun 2010) | 5 lines Issue #9020: The Py_IS* macros from pyctype.h should generally only be used with signed/unsigned char arguments. For integer arguments, EOF has to be handled separately. ........
* Merged revisions 82189 via svnmerge fromBenjamin Peterson2010-06-241-2/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82189 | benjamin.peterson | 2010-06-23 19:12:40 -0500 (Wed, 23 Jun 2010) | 1 line prevent assignment to set literals ........
* Added more test casesAlexander Belopolsky2010-06-231-1/+13
|
* Test future pickle protocols. Thanks Antoine Pitrou for suggestion.Alexander Belopolsky2010-06-231-2/+3
|
* Issue #9051: Instances of timezone class can now be pickled.Alexander Belopolsky2010-06-233-16/+32
|
* Issue #8930: Remaining indentation fixes after the Grand Unified Indenting.Stefan Krah2010-06-231-42/+42
|
* Blocked revisions 82177 via svnmergeStefan Krah2010-06-230-0/+0
| | | | | | | | ........ r82177 | stefan.krah | 2010-06-23 20:12:09 +0200 (Wed, 23 Jun 2010) | 3 lines Issue #8930: Remaining indentation fixes after the Grand Unified Indenting. ........
* Merged revisions 82169 via svnmerge fromAntoine Pitrou2010-06-221-11/+11
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82169 | antoine.pitrou | 2010-06-22 23:42:05 +0200 (mar., 22 juin 2010) | 4 lines Fix misindents in compile.c (for Benjamin). Of course, whoever used the wrong indentation rules needs to be spanked. ........
* Merged revisions 82167 via svnmerge fromBenjamin Peterson2010-06-221-4/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82167 | benjamin.peterson | 2010-06-22 15:32:02 -0500 (Tue, 22 Jun 2010) | 1 line mark ref counting as impl detail ........
* Merged revisions 82165 via svnmerge fromBenjamin Peterson2010-06-221-1/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82165 | benjamin.peterson | 2010-06-22 15:26:20 -0500 (Tue, 22 Jun 2010) | 1 line must force gc here ........
* Merged revisions 82160 via svnmerge fromBenjamin Peterson2010-06-221-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82160 | benjamin.peterson | 2010-06-22 14:45:51 -0500 (Tue, 22 Jun 2010) | 1 line spacing nit; this isn't C ........
* Blocked revisions 82161 via svnmergeBenjamin Peterson2010-06-220-0/+0
| | | | | | | | ........ r82161 | benjamin.peterson | 2010-06-22 14:49:47 -0500 (Tue, 22 Jun 2010) | 1 line bump revision ........
* Merged revisions 82157 via svnmerge fromBenjamin Peterson2010-06-222-3/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82157 | benjamin.peterson | 2010-06-22 14:16:37 -0500 (Tue, 22 Jun 2010) | 1 line remove INT_MAX assertions; they can fail with large Py_ssize_t #9058 ........
* Blocked revisions 82155 via svnmergeBenjamin Peterson2010-06-220-0/+0
| | | | | | | | | | ........ r82155 | benjamin.peterson | 2010-06-22 13:09:02 -0500 (Tue, 22 Jun 2010) | 4 lines keep UserDict an old-style class Be generous in abc.py to allow this. ........
* Added more test casesAlexander Belopolsky2010-06-221-0/+25
|
* Minor comment formatting.Senthil Kumaran2010-06-221-1/+1
|
* Minor docs issue.Senthil Kumaran2010-06-221-1/+1
|
* Merged revisions 82126-82127 via svnmerge fromThomas Heller2010-06-2116-376/+1986
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82126 | thomas.heller | 2010-06-21 16:00:24 +0200 (Mo, 21 Jun 2010) | 1 line Fix #8959 by reverting revision 80761. ........ r82127 | thomas.heller | 2010-06-21 17:01:18 +0200 (Mo, 21 Jun 2010) | 2 lines Add tests for problems reported in issue 8959. ........
* Merged revisions 82130 via svnmerge fromBenjamin Peterson2010-06-212-3/+14
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82130 | benjamin.peterson | 2010-06-21 10:27:46 -0500 (Mon, 21 Jun 2010) | 1 line fix finding visual studio 2008 on 64 bit #8854 ........
* Issue #9005: Prevent utctimetuple() from producing year 0 or year 10,000.Alexander Belopolsky2010-06-214-36/+31
|
* Move over to assertIs.Brett Cannon2010-06-211-2/+2
|
* Merged revisions 82117 via svnmerge fromMark Dickinson2010-06-202-102/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82117 | mark.dickinson | 2010-06-20 19:50:19 +0100 (Sun, 20 Jun 2010) | 1 line Merge test_strtod and test_float string-to-float conversion tests. ........
* add copyright yearsBenjamin Peterson2010-06-201-1/+1
|
* update release schedule urlBenjamin Peterson2010-06-201-1/+1
|
* Blocked revisions 82112 via svnmergeBenjamin Peterson2010-06-200-0/+0
| | | | | | | | ........ r82112 | benjamin.peterson | 2010-06-20 10:12:04 -0500 (Sun, 20 Jun 2010) | 1 line update emacs section ........
* Revert r82089. Commit was intended for a branch.Jean-Paul Calderone2010-06-197-474/+7
|
* merge forward from the python 2.x branchJean-Paul Calderone2010-06-197-7/+474
|
* Issue #8939: Improve arg.rstVictor Stinner2010-06-181-5/+5
| | | | | | * Add :ctype: to Py_BEGIN_ALLOW_THREADS and int * "s" and "s#" formats of Py_BuildValue(): specify that the Python object type is str in the description
* Merged revisions 82075 via svnmerge fromJean-Paul Calderone2010-06-182-5/+3
| | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82075 | jean-paul.calderone | 2010-06-18 16:00:17 -0400 (Fri, 18 Jun 2010) | 12 lines Revert r60115 This revision introduced quoting for strings containing | based on a misunderstanding of the commonly used quoting rules used on Windows. | is interpreted by cmd.exe, not by the MS C runtime argv initializer. It only needs to be quoted if it is part of an argument passed through cmd.exe. See issue1300, issue7839, and issue8972. ........
* Issue #6641: Original commit for this issue, r82053, introduced aAlexander Belopolsky2010-06-183-10/+22
| | | | | regression making datetime subclass' strptime return datetime rather than subclass instances. Fixed this bug and a few typos.
* Added a new line at the end of the file.Alexander Belopolsky2010-06-181-1/+1
|
* Fixed a typo in a comment.Alexander Belopolsky2010-06-181-1/+1
|
* Fix Issue1368368 - prompt_user_passwd() in FancyURLopener masks 401 ↵Senthil Kumaran2010-06-182-2/+14
| | | | Unauthorized error page
* Issue #6543: Mention the author of the patch, Amaury Forgeot d'ArcVictor Stinner2010-06-171-1/+2
|
* Issue #6543: Write the traceback in the terminal encoding instead of utf-8.Victor Stinner2010-06-176-57/+70
| | | | | | Fix the encoding of the modules filename. Reindent also traceback.h, just because I hate tabs :-)
* Issue #8203: Fix IDLE Credits dialog: view_file() uses its encoding argument.Victor Stinner2010-06-172-5/+3
|
* Typo repair.Barry Warsaw2010-06-171-4/+4
|
* Issue #6641: The datetime.strptime method now supports the %z directive.Alexander Belopolsky2010-06-175-74/+101
|
* Add note about changes to the `round` function between 2.x and 3.x.Mark Dickinson2010-06-171-0/+9
|
* Merged revisions 82047 via svnmerge fromSenthil Kumaran2010-06-171-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82047 | senthil.kumaran | 2010-06-17 22:08:34 +0530 (Thu, 17 Jun 2010) | 3 lines Fix Issue4452 - Incorrect docstring of os.setpgrp ........
* Don't use os.normcase when the result we are expecting is None.R. David Murray2010-06-171-1/+1
| | | | | This worked fine on linux but fails on Windows. That may or may not be a but in normcase.
* Issue #9011: Remove buggy and unnecessary ST->AST compilation codeMark Dickinson2010-06-173-27/+16
| | | | | | | dealing with unary minus applied to a constant. The removed code was mutating the ST, causing a second compilation to fail. (The peephole optimizer already takes care of optimizing this case, so there's no lost optimization opportunity here.)
* Merged revisions 82039 via svnmerge fromR. David Murray2010-06-173-1/+24
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r82039 | r.david.murray | 2010-06-16 21:36:52 -0400 (Wed, 16 Jun 2010) | 10 lines #8720: fix inspect regression by teaching getsourcefile about linecache. The fix for issue 4050 caused a regression: before that fix, source lines in the linecache would eventually be found by inspect. After the fix inspect reports an error earlier, and the source isn't found. The fix for the fix is to have getsourcefile look in the linecache for the file and return the psuedo-filename if the source is there, just as it already returns it if there is a PEP 302 loader. ........
* Issue #850997: Oops, I forgot the author of the patch: Mark HammondVictor Stinner2010-06-161-1/+1
|