]> granicus.if.org Git - python/shortlog
python
2008-01-30 Raymond HettingerAdd isdisjoint() to the Set/MutableSet ABCs.
2008-01-29 Raymond HettingerCallMethod is faster with a NULL third-argument than...
2008-01-29 Brett CannonIgnore .pyc and .pyo files.
2008-01-29 Brett CannonUpdate Vim syntax highlighting to specify what revision...
2008-01-29 Brett CannonFix the reindent rule to use $(BUILDPYTHON).
2008-01-28 Gregory P.... Disable use of BerkeleyDB 4.6.x to see what the odd...
2008-01-28 Raymond HettingerRemoved unnecessary conditional (spotted by Neal Norwitz).
2008-01-28 Raymond HettingerFactor-out common code with a new macro
2008-01-28 Raymond HettingerFactor-out common code with a new macro
2008-01-28 Raymond HettingerLet marshal built-up sets and frozensets one element...
2008-01-28 Raymond HettingerMake PySet_Add() work with frozensets.
2008-01-28 Thomas HellerRevert rev. 59925, it breaks comtypes (I need to furthe...
2008-01-28 Christian Heimesstatic PyObject* variables should use PyString_InternFr...
2008-01-27 Christian HeimesAdded clear cache methods to clear the internal type...
2008-01-27 Jeffrey YasskinMoved Rational._binary_float_to_ratio() to float.as_int...
2008-01-27 Georg BrandlAdd refcounting extension to build config.
2008-01-27 Neal Norwitzsocket.error doesn't have a headers attribute like...
2008-01-27 Christian HeimesChange isbasestring function as discussed on the cvs...
2008-01-27 Neal NorwitzTry to handle socket.errors properly in is_unavailable
2008-01-27 Georg BrandlRemove effectless expression statement.
2008-01-27 Neal NorwitzUpdate the comment and remove the close. If we close...
2008-01-27 Neal NorwitzPrint periodic "still working" messages since this...
2008-01-27 Neal NorwitzReduce buffer size since we do not need 1k
2008-01-27 Neal NorwitzCatch socket errors that are often the cause of transie...
2008-01-27 Neal NorwitzRetry connection in case it fails to reduce flakiness
2008-01-27 Neal NorwitzAdd a tiny sleep and additional flush to force the...
2008-01-27 Neal NorwitzUpdate to newer version of ffi. Fixes crashes and...
2008-01-27 Neal NorwitzInitialize variable to prevent warning on some platform...
2008-01-27 Neal NorwitzAdd assertion that we do not blow out newl
2008-01-27 Neal NorwitzWhitespace cleanup
2008-01-27 Raymond HettingerRemoved an unnecessary and confusing paragraph from...
2008-01-27 Raymond HettingerDocstring nit
2008-01-27 Neal NorwitzAdd stdarg include for va_list to get this to compile...
2008-01-27 Neal NorwitzUse int for the sign rather than a char. char can...
2008-01-27 Neal NorwitzMostly reformat. Also set an error and return NULL...
2008-01-27 Jeffrey YasskinMake rational.gcd() public and allow Rational to take...
2008-01-27 Neal NorwitzTry to prevent this test from being flaky. We might...
2008-01-27 Neal NorwitzEliminate the sleeps that assume the server will start...
2008-01-26 Neal NorwitzConsistently use tempfile.tempdir for the db_home direc...
2008-01-26 Neal NorwitzOn some systems (e.g., Ubuntu on hppa) the flush()
2008-01-26 Neal NorwitzReduce the race condition by signalling when the server...
2008-01-26 Neal NorwitzAlways try to remove the test file even if close raises...
2008-01-26 Neal NorwitzCleanup the code a bit. test_rfind is failing on PPC...
2008-01-26 Gregory P.... Update docs for new callpack params added in r60188
2008-01-26 Christian HeimesUnit test fix from Giampaolo Rodola, #1938
2008-01-26 Georg BrandlMove C API entries to the corresponding section.
2008-01-26 Georg Brandl#1473257: add generator.gi_code attribute that refers to
2008-01-26 Georg Brandl#1940: make it possible to use curses.filter() before...
2008-01-26 Georg BrandlClarify "b" mode under Unix.
2008-01-26 Andrew M. KuchlingAdd some items
2008-01-26 Georg BrandlFix markup again.
2008-01-26 Georg BrandlSlashes allowed on Windows.
2008-01-26 Georg BrandlAdd missing things in re docstring.
2008-01-26 Georg Brandl#1934: fix os.path.isabs docs.
2008-01-26 Raymond HettingerRevert PySet_Add() changes.
2008-01-26 Raymond HettingerUpdate test code for change to PySet_Add().
2008-01-26 Raymond HettingerLet marshal build-up sets and frozensets one element...
2008-01-26 Neal NorwitzThe OS X buildbot had errors with the unavailable excep...
2008-01-26 Raymond HettingerMake PySet_Add() work with frozensets. Works like...
2008-01-26 Neal NorwitzFix exception in tearDown on ppc buildbot. If there...
2008-01-26 Neal NorwitzUse a condition variable (threading.Event) rather than...
2008-01-26 Neal NorwitzPrevent this test from failing if there are transient...
2008-01-26 Thomas WoutersMake 'testall' work again when building in a separate...
2008-01-25 Thomas WoutersUse the right (portable) definition of the max of a...
2008-01-25 Guido van RossumRewrite the list_inline_repeat overflow check slightly...
2008-01-25 Raymond HettingerChanges 54857 and 54840 broke code and were reverted...
2008-01-25 Christian HeimesAdded the Python core headers Include/*.h and pyconfig...
2008-01-25 Christian Heimessetup.py doesn't pick up changes to a header file
2008-01-25 Christian HeimesBackport of several functions from Python 3.0 to 2...
2008-01-25 Neal NorwitzAdd prototypes to get the mathmodule.c to compile on...
2008-01-25 Neal NorwitzMake the test more robust by trying to reconnect up...
2008-01-25 Raymond HettingerMore design notes
2008-01-25 Raymond HettingerFix-up signature for approximation.
2008-01-25 Raymond HettingerAdd one other review comment.
2008-01-25 Raymond HettingerMark todos and review comments.
2008-01-25 Raymond HettingerAdd support for copy, deepcopy, and pickle.
2008-01-24 Raymond HettingerMore code cleanup. Remove unnecessary indirection...
2008-01-24 Amaury Forgeot... News entry for r60265 (Issue 1920).
2008-01-24 Amaury Forgeot... #1920: when considering a block starting by "while...
2008-01-24 Raymond HettingerShorter pprint's for empty sets and frozensets. Fix...
2008-01-24 Raymond HettingerExpand tests to include nested graph structures.
2008-01-24 Raymond HettingerAdd support for int(r) just like the other numeric...
2008-01-24 Thomas HellerInvert the checks in get_[u]long and get_[u]longlong...
2008-01-24 Raymond HettingerAdd support for trunc().
2008-01-24 Thomas HellerReplace Py_BuildValue with PyTuple_Pack because it...
2008-01-24 Thomas HellerUse a PyDictObject again for the array type cache;...
2008-01-24 Guido van RossumNews about recently fixed crashers:
2008-01-24 Raymond HettingerRevert 60189 and restore performance.
2008-01-24 Raymond HettingerClean-up and speed-up code by accessing numerator/denom...
2008-01-24 Guido van RossumFix test67.py from issue #1303614.
2008-01-24 Guido van RossumFi debug turd -- a call accidentally left out.
2008-01-24 Vinay SajipUpdated for optional delay argument to FileHandler...
2008-01-24 Vinay SajipAdded documentation for optional delay argument to...
2008-01-24 Vinay SajipAdded optional delay argument to FileHandler and subcla...
2008-01-24 Vinay SajipAdded optional delay argument to FileHandler and subcla...
2008-01-24 Gregory P.... Fix issue1789: The tutorial contained a misuse of the...
2008-01-24 Neal NorwitzFix the test_urllib2net failures that were caused by...
2008-01-24 Neal NorwitzFix the tests by restoring __import__. I think the...
2008-01-24 Raymond HettingerCleanup
2008-01-24 Raymond HettingerMinor clean-up and more tests.
next