]> granicus.if.org Git - python/shortlog
python
2008-02-02 Georg BrandlAmendments to the urllib2 docs, written for GHOP by...
2008-02-02 Raymond HettingerNeaten-up a bit.
2008-02-02 Raymond HettingerSimpler solution to handling non-IEEE 754 environments.
2008-02-01 Raymond HettingerAdd protection from weirdness while scaling the mantiss...
2008-02-01 Raymond HettingerFix int/long typecase. Add check for non-binary floati...
2008-02-01 Marc-André... Bump distutils version number to match Python version.
2008-02-01 Raymond HettingerTest round-trip on float.as_integer_ratio() and float...
2008-02-01 Raymond Hettingerlabs() takes a long for an input.
2008-02-01 Raymond HettingerInteger ratio should return ints instead of longs where...
2008-02-01 Raymond HettingerIssue #1996: float.as_integer_ratio() should return...
2008-02-01 Georg BrandlUpdate for latest sphinx latex writer.
2008-02-01 Georg BrandlWording nit.
2008-02-01 Christian HeimesMore int -> pid_t.
2008-02-01 Georg BrandlRename batch file.
2008-02-01 Georg BrandlAdd link checker builder, written for GHOP by Thomas...
2008-02-01 Georg BrandlUpdate IPv6 RFC number.
2008-02-01 Neal NorwitzFix refleak
2008-02-01 Jeffrey YasskinRoll back r60248. It's useful to encourage users not...
2008-02-01 Jeffrey YasskinMove __builtins__.trunc() to math.trunc() per
2008-01-31 Christian HeimesFixed bug #1983: Return from fork() is pid_t, not int
2008-01-31 Mark DickinsonIssue #1678380. Fix a bug that identifies 0j and ...
2008-01-31 Raymond HettingerMinor wordsmithing on docstring
2008-01-31 Jeffrey YasskinRemove unused to-be-magic methods from Rational per...
2008-01-31 Jeffrey YasskinAdded more documentation on how mixed-mode arithmetic...
2008-01-31 Raymond HettingerMissing return
2008-01-31 Raymond HettingerFix defect in __ixor__ which would get the wrong
2008-01-30 Christian HeimesBug #1234: Fixed semaphore errors on AIX 5.2
2008-01-30 Raymond HettingerUpdate itertool recipes
2008-01-30 Christian HeimesThe previous change was causing a segfault after multip...
2008-01-30 Christian HeimesFixed some references leaks in sys.
2008-01-30 Christian HeimesRemoved unused var
2008-01-30 Christian HeimesPatch #1970 by Antoine Pitrou: Speedup unicode whitespa...
2008-01-30 Raymond HettingerDemonstrate new except/as syntax.
2008-01-30 Raymond HettingerMutableSets support a remove() method.
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...
next