Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Test calendar.monthrange. | Brett Cannon | 2010-07-23 | 2 | -0/+30 |
| | | | | Closes issue 9342. Thanks John Chandler for the patch. | ||||
* | This fixes issue7900 by adding code that deals | Ronald Oussoren | 2010-07-23 | 3 | -8/+101 |
| | | | | | | | | | with the fact that getgroups(2) might return more that MAX_GROUPS on OSX. See the issue (and python-dev archives) for the gory details. Summarized: OSX behaves rather oddly and Apple says this is intentional. | ||||
* | Clarify the wording for threading.is_alive() to not suggest something is | Brett Cannon | 2010-07-23 | 1 | -2/+2 |
| | | | | | | "roughly" done. Closes issue 9339. Thanks Brian Brazil for the patch. | ||||
* | Issue #6095: Make directory argument to os.listdir optional. | Martin v. Löwis | 2010-07-23 | 4 | -14/+35 |
| | | | | Patch by Virgil Dupras. | ||||
* | Fix for issue 7895. Avoid crashing the interpreter | Ronald Oussoren | 2010-07-23 | 3 | -11/+71 |
| | | | | | | when calling platform.mac_ver after calling os.fork by reading from a system configuration file instead of using OSX APIs. | ||||
* | Minor tweak of test_osx_env to | Ronald Oussoren | 2010-07-23 | 1 | -1/+1 |
| | | | | | avoid failing when the framework is not yet installed. | ||||
* | Document the fact that the 'test' package is meant only for use by Python | Brett Cannon | 2010-07-23 | 2 | -0/+10 |
| | | | | | | itself and not by others. Closes issue 9255. | ||||
* | Workaround for issue 4047: in some configurations of | Ronald Oussoren | 2010-07-23 | 1 | -0/+15 |
| | | | | | | | | | the Crash Reporter on OSX test_subprocess will trigger the reporter. This patch prints a warning when the Crash Reporter will get triggered intentionally, which should avoid confusing people. | ||||
* | Ensure that the Makefile variable expansion | Ronald Oussoren | 2010-07-23 | 2 | -0/+32 |
| | | | | | | | | | | | in distutils.sysconfig matches that in the toplevel sysconfig module. Without this patch universal builds on OSX are broken. Als add a test that checks that the two version of get_config_vars agree on important values. | ||||
* | Use augassign. | Georg Brandl | 2010-07-23 | 1 | -22/+22 |
| | |||||
* | Skip this test as it doesn't apply to Windows. It was added for | Brian Curtin | 2010-07-22 | 1 | -0/+1 |
| | | | | #9189 for some GCC flags. | ||||
* | reverted distutils its 3.1 state. All new work is now happening in ↵ | Tarek Ziadé | 2010-07-22 | 64 | -1684/+1632 |
| | | | | disutils2, and distutils is now feature-frozen. | ||||
* | Add importlib benchmarks which try to be "realistic" by importing the decimal | Brett Cannon | 2010-07-22 | 1 | -7/+50 |
| | | | | module which is the largest module in the stdlib. | ||||
* | Issue #9323: Fixed a bug in trace.py that resulted in loosing the name | Alexander Belopolsky | 2010-07-21 | 3 | -7/+7 |
| | | | | of the script being traced. Patch by Eli Bendersky. | ||||
* | Issue #5395: check that array.fromfile() re-raises an IOError instead of ↵ | Antoine Pitrou | 2010-07-21 | 1 | -0/+11 |
| | | | | | | | replacing it with EOFError. (this is only an added test, but 2.x will get a fix too) | ||||
* | Remove outdated mention of deprecated functions in the string module - they ↵ | Antoine Pitrou | 2010-07-21 | 1 | -7/+7 |
| | | | | have been removed in 3.x. | ||||
* | Apply patch from Ray Allen for issue 9296 | Doug Hellmann | 2010-07-21 | 2 | -1/+10 |
| | |||||
* | Minor clarification about importlib.abc.SourceLoader.get_filename. | Brett Cannon | 2010-07-21 | 1 | -1/+1 |
| | |||||
* | Fix #9316. if/is grammar corrections. | Brian Curtin | 2010-07-21 | 1 | -3/+3 |
| | |||||
* | revert unintended changes | Benjamin Peterson | 2010-07-20 | 7 | -31/+11 |
| | |||||
* | move test_trace.py so as not to conflict with future tests for the trace module | Benjamin Peterson | 2010-07-20 | 8 | -11/+31 |
| | |||||
* | Issue #9282: Fixed --listfuncs option of trace.py. Thanks Eli | Alexander Belopolsky | 2010-07-20 | 3 | -1/+6 |
| | | | | Bendersky for the patch. | ||||
* | Without this patch the value of sysconfig.get_config_var('LDSHARED') | Ronald Oussoren | 2010-07-20 | 1 | -7/+27 |
| | | | | | | | | | | | | | | is wrong when PY_LDFLAGS is not empty. The bug was caused by LDSHARED getting expanded *before* sysconfig renamed PY_LDSHARED (and simular values) to names without a PY_ prefix. The patch tries to maintain the intended behaviour of allowing users to set LDFLAGS in the environment and have that affect the build. Without this patch a universal build on OSX cannot build universal (fat binary) extensions. | ||||
* | Fixes Issue #3704: http.cookiejar was not properly handling URLs with a / in | Gregory P. Smith | 2010-07-19 | 3 | -35/+47 |
| | | | | the parameters. (This is jjlee's issue3704.patch ported to py3k) | ||||
* | Fix Issue9301 - urllib.parse.unquote and unquote_to_byte to raise TypeError ↵ | Senthil Kumaran | 2010-07-19 | 2 | -0/+7 |
| | | | | for None. | ||||
* | Sub-issue of #9036: Fix incorrect use of Py_CHARMASK. | Stefan Krah | 2010-07-19 | 2 | -1/+2 |
| | |||||
* | Issue #9265: Incorrect name passed as arg[0] when shell=True | Stefan Krah | 2010-07-19 | 2 | -0/+21 |
| | | | | and executable specified. | ||||
* | This patch adds a testcase that demonstrates a problem | Ronald Oussoren | 2010-07-19 | 1 | -0/+6 |
| | | | | | | | | | with the expansion of LDSHARED when accessing that value through sysconfig. The problem is probably caused by the 9189. A fix will follow shortly. | ||||
* | Issue #9036: Throughout the code base, Py_CHARMASK is used on 8-bit wide | Stefan Krah | 2010-07-19 | 1 | -6/+1 |
| | | | | | | | | | | | | | signed/unsigned chars or on integers directly derived from those. In all cases, it could be replaced by a simple cast to (unsigned char). Reasons for the change: a) Make the comment more explicit. b) If char is unsigned, the cast is optimized away. c) If char is unsigned, gcc emits spurious "array subscript has type 'char'" warnings. | ||||
* | Clarification. Yay importlib! | Georg Brandl | 2010-07-19 | 1 | -2/+5 |
| | |||||
* | pydoc.pager does not promise to use $PAGER. | Georg Brandl | 2010-07-19 | 2 | -5/+4 |
| | |||||
* | Remove temporary debugging code. | Mark Dickinson | 2010-07-19 | 2 | -60/+1 |
| | |||||
* | Clarify :option: description. | Georg Brandl | 2010-07-19 | 1 | -2/+3 |
| | |||||
* | Clarify. | Georg Brandl | 2010-07-19 | 1 | -2/+2 |
| | |||||
* | Document the extra epoll flags | Jean-Paul Calderone | 2010-07-18 | 1 | -5/+5 |
| | |||||
* | There is no method named "register(fd, eventmask)"; fix markup to just ↵ | Jean-Paul Calderone | 2010-07-18 | 1 | -1/+1 |
| | | | | indicate this is code. | ||||
* | Add configure check for a bug with gcc soft floating-point and subnormals, ↵ | Mark Dickinson | 2010-07-18 | 2 | -1/+60 |
| | | | | to help debug issue 8265. | ||||
* | nest method and attribute doc | Benjamin Peterson | 2010-07-18 | 1 | -15/+16 |
| | |||||
* | use classmethod | Benjamin Peterson | 2010-07-18 | 1 | -1/+1 |
| | |||||
* | #9110: update to ContextDecorator doc. | Georg Brandl | 2010-07-18 | 1 | -13/+32 |
| | |||||
* | #9279: remove the pdb.doc file, put its contents in pdb.__doc__. Also sync ↵ | Georg Brandl | 2010-07-18 | 5 | -337/+403 |
| | | | | this and the pdb docs, introduce a new directive for pdb commands and a role to link to them. | ||||
* | Clarify Misc/NEWS entry. | Mark Dickinson | 2010-07-18 | 1 | -2/+2 |
| | |||||
* | Misc/NEWS entry for r82941. | Mark Dickinson | 2010-07-18 | 1 | -0/+5 |
| | |||||
* | Issue #9277: Struct module: standard bool packing was incorrect if | Mark Dickinson | 2010-07-18 | 1 | -2/+2 |
| | | | | char is unsigned. Thanks Stefan Krah for the patch. | ||||
* | Issue #5180: Fixed a bug that prevented loading 2.x pickles in 3.x | Alexander Belopolsky | 2010-07-17 | 4 | -40/+91 |
| | | | | python when they contain instances of old-style classes. | ||||
* | sharedinstall should depend on sharedmods #9280 | Benjamin Peterson | 2010-07-17 | 2 | -1/+3 |
| | |||||
* | Issue #9268: Add annotation option to pickletools.dis | Alexander Belopolsky | 2010-07-17 | 3 | -13/+55 |
| | |||||
* | Issue #7384: On Gentoo, libreadline.so is a "fake library", so ldd fails. | Stefan Krah | 2010-07-17 | 1 | -12/+13 |
| | | | | In that case, do not attempt to parse stderr output. | ||||
* | #1555570: correctly handle a \r\n that is split by the read buffer. | R. David Murray | 2010-07-17 | 3 | -0/+40 |
| | | | | Patch and test by Tony Nelson. | ||||
* | Add comma grouping to max result so it's easier to read. | Brett Cannon | 2010-07-16 | 1 | -1/+1 |
| |