summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* #970783: document PyObject_Generic[GS]etAttr.Georg Brandl2009-03-311-0/+21
|
* #992207: document that the parser only accepts \\n newlines.Georg Brandl2009-03-311-1/+6
|
* The unittest.TestCase.assertEqual() now displays the differences in lists,Gregory P. Smith2009-03-316-90/+1079
| | | | | | | | | | tuples, dicts and sets on failure. Many new handy type and comparison specific assert* methods have been added that fail with error messages actually useful for debugging. Contributed in by Google and completed with help from mfoord and GvR at PyCon 2009 sprints. Discussion lives in http://bugs.python.org/issue2578.
* #5417: replace references to undocumented functions by ones to documented ↵Georg Brandl2009-03-311-12/+13
| | | | functions.
* #1386675: specify WindowsError as the exception, because it has a winerror ↵Georg Brandl2009-03-311-9/+8
| | | | attribute that EnvironmentError doesnt have.
* #5529: backport new docs of import semantics written by Brett to 2.x.Georg Brandl2009-03-313-52/+177
|
* #5581: fget argument of abstractproperty is optional as well.Georg Brandl2009-03-311-1/+2
|
* #5566: fix versionadded from PyLong ssize_t functions.Georg Brandl2009-03-311-3/+3
|
* #5519: remove reference to Kodos, which seems dead.Georg Brandl2009-03-311-7/+1
|
* Add check for PyDict_Update() error.Jeremy Hylton2009-03-311-1/+2
|
* Global statements from one function leaked into parallel functions.Jeremy Hylton2009-03-312-22/+125
| | | | | | | | | | | | | Re http://bugs.python.org/issue4315 The symbol table used the same name dictionaries to recursively analyze each of its child blocks, even though the dictionaries are modified during analysis. The fix is to create new temporary dictionaries via the analyze_child_block(). The only information that needs to propagate back up is the names of the free variables. Add more comments and break out a helper function. This code doesn't get any easier to understand when you only look at it once a year.
* Update quicktest to match Python 3 branchJeremy Hylton2009-03-311-3/+4
|
* Minor update to OSX build-installer script, neededRonald Oussoren2009-03-311-0/+11
| | | | | to ensure that the build will succeed in a clean checkout and with a non-default deployment target.
* Add is_declared_global() which distinguishes between implicit andJeremy Hylton2009-03-312-0/+5
| | | | explicit global variables.
* Issue #5387: Fixed mmap.move crash by integer overflow.Hirokazu Yamamoto2009-03-313-4/+21
|
* add JoinableQueue to __all__Jesse Noller2009-03-311-1/+1
|
* Fix a wrong struct field assignment (docstring as closure).Georg Brandl2009-03-311-1/+1
|
* Add various itemsAndrew M. Kuchling2009-03-311-9/+55
|
* merge in patch from tim golden to fix contextmanager support for mp.Lock()Jesse Noller2009-03-304-2/+9
|
* Actually suppress warnings in test_at_least_import_untested_modulesR. David Murray2009-03-301-0/+1
| | | | inside the catch_warnings context manager.
* Fix issue #4865: add /Library/Python/2.7/site-packages toRonald Oussoren2009-03-302-4/+8
| | | | | sys.path on OSX, to make it easier to share (some) installed packages between the system install and a user install.
* Add more itemsAndrew M. Kuchling2009-03-301-4/+46
|
* typo fixAndrew M. Kuchling2009-03-301-1/+1
|
* Change more tests to use import_module for the modules thatR. David Murray2009-03-3017-43/+53
| | | | | should cause tests to be skipped. Also rename import_function to the more descriptive get_attribute and add a docstring.
* #5039: make it clear that the impl. note refers to CPython.Georg Brandl2009-03-301-2/+3
|
* A fix for issue 1974, inspired by the patch from Andi Albrecht (aalbrecht),Barry Warsaw2009-03-304-62/+83
| | | | | | though with some changes by me. This patch should not be back ported or forward ported. It's a bit too risky for 2.6 and 3.x does things fairly differently.
* Many editsAndrew M. Kuchling2009-03-301-75/+74
|
* Add several items and placeholdersAndrew M. Kuchling2009-03-301-42/+90
|
* Remove commentAndrew M. Kuchling2009-03-301-2/+0
|
* Typo fixesAndrew M. Kuchling2009-03-301-2/+2
|
* #5199: make warning about vars() assignment more visible.Georg Brandl2009-03-301-2/+6
|
* Add several VM developers.Martin v. Löwis2009-03-301-0/+5
|
* finalize the queue prior to shutdownJesse Noller2009-03-301-0/+2
|
* Fix for bugs: Issue4675 and Issue4962.Senthil Kumaran2009-03-304-2/+22
|
* Remove references to test_socket_ssl which was deleted in trunkR. David Murray2009-03-301-12/+0
| | | | in r64392 and py3k in r59038.
* Fix for issue 13095Ronald Oussoren2009-03-302-1/+7
|
* Fixes issue 5270Ronald Oussoren2009-03-302-5/+12
|
* * Set a custom icon on the Python installer DMGRonald Oussoren2009-03-302-127/+189
| | | | | | | * Remove last traces of "MacPython" * Add options to build different flavors of the installer (still defaulting to a 2-way universal build that runs on OSX 10.3)
* Remove usage of the deprecated '-cString' and '+stringWithCString:' API'sRonald Oussoren2009-03-301-2/+2
| | | | in PythonLauncher, replacing them with the correct counterparts.
* Add import_function method to test.test_support, and modify a number ofR. David Murray2009-03-3020-41/+78
| | | | | | | | tests that expect to be skipped if imports fail or functions don't exist to use import_function and import_module. The ultimate goal is to change regrtest to not skip automatically on ImportError. Checking in now to make sure the buldbots don't show any errors on platforms I can't direct test on.
* Fix issue where 'make altinstall' or 'make install' would install everythingRonald Oussoren2009-03-302-1/+5
| | | | that needs to be installed on OSX (depending on the configure flags)
* * Updates installed dependencies to latest releaases (bzip, zlib, ...)Ronald Oussoren2009-03-302-111/+65
| | | | | | * Changes code for updating folder icons from Python code that uses the deprecated Carbon module to a much simpler Cocoa program in Objective-C
* Tk 8.5 Text widget requires 'wordprocessor' tabstyle attr to handle mixed ↵Kurt B. Kaiser2009-03-302-4/+15
| | | | space/tab properly. Issue 5120, patch by Guilherme Polo.
* Fix for issue 896199 (some Carbon modules aren't present in the documentation)Ronald Oussoren2009-03-301-0/+262
|
* Issue 5177: use socket.SO_REUSEADDR on multiprocessing SocketManager socketsJesse Noller2009-03-303-0/+29
|
* Revert incorrect change.R. David Murray2009-03-301-3/+6
|
* Add an entry to developers.txt.Brett Cannon2009-03-301-0/+3
|
* This patch fixes issue 1254695 (wrong argument type conversion in Carbon.Qt)Ronald Oussoren2009-03-302-365/+368
|
* don't rely on the order dict repr #5605Benjamin Peterson2009-03-301-2/+2
|
* Convert import try/except to use test_support.import_module().R. David Murray2009-03-301-6/+3
|