summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| | * | | | | | | merge from 3.2 - Fix closes issue12581 - Increase the urllib.parse test cover...Senthil Kumaran2011-07-231-2/+9
| | * | | | | | | Fix function name: open -> urlopen.Georg Brandl2011-07-231-1/+1
| | * | | | | | | merge headsBenjamin Peterson2011-07-223-312/+291
| | |\ \ \ \ \ \ \
| | | * | | | | | | Issue #12592: Make Python build on OpenBSD 5 (and future major releases).Charles-François Natali2011-07-223-312/+291
| | * | | | | | | | allow None identifiersBenjamin Peterson2011-07-222-4/+4
| | |/ / / / / / /
| | * | | | | | | news noteBenjamin Peterson2011-07-221-0/+3
| | * | | | | | | verify the types of AST strings and identifiers (closes #12609 and #12610)Benjamin Peterson2011-07-223-6/+54
| | * | | | | | | hardcode the old svn __version__Benjamin Peterson2011-07-221-5/+3
| | * | | | | | | Issue #12434: make StringIO.write error message consistent with Python 2.7 no...Eli Bendersky2011-07-221-1/+1
| | * | | | | | | Issue #12372: POSIX semaphores are broken on AIX: don't use them.Charles-François Natali2011-07-213-11/+6
| | * | | | | | | Fix markup.Ezio Melotti2011-07-211-2/+2
| | * | | | | | | #12601: fix typo.Ezio Melotti2011-07-211-1/+1
| | * | | | | | | merge from 3.2 - Fix closes issue12524 - update http.client POST example with...Senthil Kumaran2011-07-201-4/+6
| | * | | | | | | Upstream merge.Barry Warsaw2011-07-192-9/+22
| | |\ \ \ \ \ \ \
| | | * | | | | | | - Issue #10309: Define _GNU_SOURCE so that mremap() gets the properBarry Warsaw2011-07-192-9/+22
| | * | | | | | | | Issue #12571: Add a plat-linux3 directory mirroring the plat-linux2 directory,Antoine Pitrou2011-07-196-0/+1087
| | |/ / / / / / /
| | * | | | | | | Improve docstring for divmod()Raymond Hettinger2011-07-191-1/+1
| | * | | | | | | A number of small fixups for the sorting howto guide.Raymond Hettinger2011-07-191-4/+17
| | * | | | | | | #7484: no more <> around addresses in VRFY or EXPNR David Murray2011-07-193-8/+17
| | * | | | | | | merge from 3.2 - Fix closes issue12577 - clarify shutil.move documentation. P...Senthil Kumaran2011-07-191-2/+4
| | * | | | | | | Issue #6476: Document that os.spawnle and os.spawnve are not thread-safe unde...Antoine Pitrou2011-07-181-1/+3
| | * | | | | | | Better English.R David Murray2011-07-181-1/+1
| | * | | | | | | Add missing "a".Georg Brandl2011-07-181-1/+1
| | * | | | | | | Backport 2eb8789e30e7.Alex Gaynor2011-07-171-6/+15
| | * | | | | | | fix whitespace in rst.Senthil Kumaran2011-07-171-2/+2
| | * | | | | | | merge from 3.2 - Fix closes Issue12478 - HTTPErrorProcess 's methods are http...Senthil Kumaran2011-07-171-1/+7
| | * | | | | | | merge from 3.2 - Fix closes Issue12479 - Add HTTPErrorProcessor class definit...Senthil Kumaran2011-07-171-0/+5
| | * | | | | | | merge from 3.2 - Issue10403 - datetime module documentation changes based on...Senthil Kumaran2011-07-171-18/+20
| | * | | | | | | merge from 3.2.Senthil Kumaran2011-07-171-4/+5
| | * | | | | | | Issue #12574: correct capitalization of the Queue module. Patch by Rafe KettlerEli Bendersky2011-07-172-2/+3
| | * | | | | | | Issue #11603: Fix a crash when __str__ is rebound as __repr__.Antoine Pitrou2011-07-153-1/+12
| | * | | | | | | port 8d05f697acd4 (#11627)Benjamin Peterson2011-07-153-2/+21
| | * | | | | | | Issue #12502: asyncore: fix polling loop with AF_UNIX sockets.Charles-François Natali2011-07-142-2/+6
| | * | | | | | | Issue #12250: test_socketserver uses a timeout of 60 seconds instead of 20Victor Stinner2011-07-141-2/+1
| | * | | | | | | It is really a suffix :-)Raymond Hettinger2011-07-141-1/+1
| | * | | | | | | carefully cleanup pointer cache after creating struct pointersBenjamin Peterson2011-07-141-12/+12
| | * | | | | | | Issue #12549: Correct test_platform to not fail when OS X returns 'x86_64'Ned Deily2011-07-134-4/+5
| | * | | | | | | Close #4376: ctypes now supports nested structures in a endian different thanVictor Stinner2011-07-134-18/+40
| | * | | | | | | Clarify that PyErr_NewException creates an exception *class*, not instance.Georg Brandl2011-07-131-3/+3
| | * | | | | | | this can be done without a custom dict (also fixes #12544)Benjamin Peterson2011-07-131-22/+3
| | * | | | | | | Issue #12149: Update the method cache after a type's dictionnary getsAntoine Pitrou2011-07-124-1/+27
| | * | | | | | | Mention logging.captureWarnings in the warnings module doc.Antoine Pitrou2011-07-091-0/+4
| | * | | | | | | Move sys.subversion at the right place in alphabetical order,Antoine Pitrou2011-07-091-14/+20
| | * | | | | | | Issue #12326: document the recommended idiom for checking sys.platform on Uni...Antoine Pitrou2011-07-092-0/+19
| | * | | | | | | Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporaryAntoine Pitrou2011-07-092-0/+4
| | * | | | | | | Avoid failing in test_robotparser when mueblesmoraleda.com is flaky andAntoine Pitrou2011-07-082-1/+20
| | * | | | | | | Avoid failing in test_urllibnet.test_bad_address when some overzealousAntoine Pitrou2011-07-082-0/+12
| | * | | | | | | Issue #12423: Fix os.abort() documentationVictor Stinner2011-07-082-3/+5
| | * | | | | | | Close #12501: Adjust callable() warning: callable() is only not supported inVictor Stinner2011-07-083-1/+5
| | * | | | | | | Issue #8716: Instead of relying on Aqua Tk exceptions to detect lack ofNed Deily2011-07-061-28/+38