summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove unneeded variable assignment.Brett Cannon2010-05-031-3/+1
| | | | Found using Clang's static analyzer.
* Remove unneeded variable mutation and initializations.Brett Cannon2010-05-031-4/+6
| | | | Found using Clang's static analyzer.
* Clean up whitespace and remove unneeded variable initialization as found byBrett Cannon2010-05-031-56/+52
| | | | Clang.
* Remove an unused variable.Brett Cannon2010-05-031-2/+1
| | | | Found using Clang's static analyzer.
* Remove unneeded variable initialization.Brett Cannon2010-05-031-3/+0
| | | | Found using Clang's static analyzer.
* Issue #7865: The close() method of :mod:`io` objects should not swallowAntoine Pitrou2010-05-037-31/+80
| | | | | exceptions raised by the implicit flush(). Also ensure that calling close() several times is supported. Patch by Pascal Chambon.
* wbits negative was documented SEVEN years agoJesus Cea2010-05-031-3/+1
|
* Issue #8576: logging updated to remove usage of find_unused_port().Vinay Sajip2010-05-033-4/+9
|
* Update the Vim syntax highlight file.Brett Cannon2010-05-022-20/+26
|
* Fix unittest tests to not abuse traceback.format_exceptionMichael Foord2010-05-021-1/+14
|
* Issue #4687: Fix accuracy of garbage collection runtimes displayed withAntoine Pitrou2010-05-022-1/+4
| | | | gc.DEBUG_STATS.
* Small update to r80698 to ensure that webbrowser.openRonald Oussoren2010-05-021-1/+1
| | | | uses the default browser.
* For for issue #7192: with this patch webbrowser.get("firefox")Ronald Oussoren2010-05-022-1/+30
| | | | works on OSX
* Improve error message from nb_int returning a non-integer, in various ↵Mark Dickinson2010-05-021-4/+4
| | | | PyInt_As* functions:
* Remove duplicate testAntoine Pitrou2010-05-011-21/+0
|
* Fix attribution. Travis didn't do much and he did a bad work.Antoine Pitrou2010-05-011-1/+1
| | | | (yes, this is a sensitive subject, sorry)
* Describe memoryviewAndrew M. Kuchling2010-05-011-1/+53
|
* Minor grammar fixAndrew M. Kuchling2010-05-011-1/+1
|
* Fix incorrect use of a list as the target of an 'except' clause in ↵Mark Dickinson2010-05-011-1/+1
| | | | test_decimal.py.
* Fix issue8582: urllib.urlretrieve fails with ValueError: Invalid format stringSenthil Kumaran2010-05-012-1/+14
|
* Add various itemsAndrew M. Kuchling2010-05-011-5/+30
|
* Issue #8576: Remove use of find_unused_port() in test_smtplib andAntoine Pitrou2010-04-303-7/+14
| | | | test_multiprocessing. Patch by Paul Moore.
* [issue8211] configure: ignore AC_PROG_CC hardcoded CFLAGSMarc-André Lemburg2010-04-302-20/+30
| | | | | | Only override the AC_PROG_CC determined CFLAGS if they were set by the user. This restores the default behavior in the common case of not having CFLAGS defined when running configure.
* Add notes about uninstalling a framework install toRonald Oussoren2010-04-301-1/+21
| | | | Mac/README. Fixes issue 7107.
* Fix for issue 8476Ronald Oussoren2010-04-301-4/+5
|
* Add itemAndrew M. Kuchling2010-04-301-0/+10
|
* Minor grammar re-wordingAndrew M. Kuchling2010-04-301-2/+2
|
* Fixed #8577. distutils.sysconfig.get_python_inc() now differenciates buildir ↵Tarek Ziadé2010-04-302-5/+13
| | | | and srcdir
* Fix for issue #3646: with this patch it is possible to do aRonald Oussoren2010-04-307-24/+116
| | | | | | | | | | | | framework install of Python in your home directory (on OSX): $ configure --enable-framework=${HOME}/Library/Frameworks $ make && make install Without this patch the framework would get installed just fine, but 'make install' would try to install the application bundles and command-line tools outside the user's home, which doesn't work for non-admin users (and is bad form anyway).
* Add various items; rearrange unittest section a bitAndrew M. Kuchling2010-04-301-51/+87
|
* Markup fix; clarify by adding 'in that order'Andrew M. Kuchling2010-04-301-2/+3
|
* Fix typosAndrew M. Kuchling2010-04-302-2/+2
|
* Reword paragraph to make its meaning clearer.Andrew M. Kuchling2010-04-301-7/+10
| | | | | | Antoine Pitrou: is my version of the paragraph still correct? R. David Murray: is this more understandable than the previous version?
* Always add space after RFC; reword paragraphAndrew M. Kuchling2010-04-301-7/+8
|
* Fixes issue 8543 (asynchat documentation issues)Giampaolo Rodolà2010-04-291-91/+10
|
* Fixing the Broken links of mechanize library.Senthil Kumaran2010-04-291-3/+2
|
* Group the Windows entries in getfilesystemencoding doc, move the win 9x one ↵Ezio Melotti2010-04-291-7/+9
| | | | at the bottom of the list and fix some markup.
* Issue #8464: tarfile.open(name, mode="w|") no longer createsLars Gustäbel2010-04-293-1/+22
| | | | files with execute permissions set.
* Issue #7834: Fix connect() of Bluetooth L2CAP sockets with recent versionsAntoine Pitrou2010-04-293-0/+5
| | | | of the Linux kernel. Patch by Yaniv Aknin.
* update pypy urlBenjamin Peterson2010-04-291-1/+1
|
* update pypy descriptionBenjamin Peterson2010-04-291-6/+6
|
* Add various unittest itemsAndrew M. Kuchling2010-04-291-16/+40
|
* Fix doubled 'the'.Andrew M. Kuchling2010-04-291-16/+16
| | | | | | | Markup fixes to use :exc:, :option: in a few places. (Glitch: unittest.main's -c ends up a link to the Python interpreter's -c option. Should we skip using :option: for that switch, or disable the auto-linking somehow?)
* Add various itemsAndrew M. Kuchling2010-04-291-13/+51
|
* Fix style issues in test_sslAntoine Pitrou2010-04-281-138/+143
|
* Clarify and fix the documentation for IOBase.close()Antoine Pitrou2010-04-281-2/+4
|
* State clearly that truncate() doesn't move the file position,Antoine Pitrou2010-04-281-6/+3
| | | | and remove a duplicate of its specification.
* Fixed Issue6312 - httplib fails with HEAD requests to pages with ↵Senthil Kumaran2010-04-284-0/+39
| | | | "transfer-encoding: chunked"
* Add version changed note for -m tinkering with sys.argv[0] during the search ↵Nick Coghlan2010-04-281-0/+2
| | | | process
* Issue 8202: when using the -m command line switch, sys.argv[0] is now '-m' ↵Nick Coghlan2010-04-283-4/+9
| | | | instead of '-c' while searching for the module to be executed