]> granicus.if.org Git - python/shortlog
python
2006-11-04 Neal NorwitzBug #1588287: fix invalid assertion for `1,2` in debug...
2006-11-04 Martin v. Löwis- Patch #1060577: Extract list of RPM files from spec...
2006-11-03 Tim PetersWhitespace normalization.
2006-11-02 Thomas HellerFix a code example by adding a missing import.
2006-11-02 Thomas HellerReplace the XXX marker in the 'Arrays and pointers...
2006-10-31 Vinay SajipAdded relativeCreated to Formatter doc (has been in...
2006-10-31 Vinay SajipChange to improve speed of _fixupChildren
2006-10-29 Neal NorwitzI'm assuming this is correct, it fixes the tests so...
2006-10-29 Neal NorwitzFix refleak
2006-10-29 Walter DörwaldAdd tests for incremental codecs with an errors
2006-10-29 Walter DörwaldAdd tests for basic argument errors.
2006-10-29 Georg BrandlMove the check for openpty to the beginning.
2006-10-29 Georg BrandlRemove leftover test output file.
2006-10-29 Georg BrandlConvert test_openpty to unittest.
2006-10-29 Georg BrandlConvert test_MimeWriter to unittest.
2006-10-29 Georg BrandlCompletely convert test_httplib to unittest.
2006-10-29 Georg BrandlConvert test_cgi to unittest.
2006-10-29 Georg BrandlConvert test_cookie to unittest.
2006-10-29 Georg BrandlConvert test_types to unittest.
2006-10-29 Georg BrandlConvert test_nis to unittest.
2006-10-29 Georg BrandlConvert test_poll to unittest.
2006-10-29 Georg BrandlConvert test_mmap to unittest.
2006-10-29 Georg BrandlBug #1576657: when setting a KeyError for a tuple key...
2006-10-29 Neal NorwitzUpdate comments, remove commented out code.
2006-10-29 Georg BrandlBug #1586773: extend hashlib docstring.
2006-10-29 Georg BrandlBug #1586613: fix zlib and bz2 codecs' incremental...
2006-10-29 Georg BrandlFix the new EncodedFile test to work with big endian...
2006-10-29 Georg BrandlTest assert if __debug__ is true.
2006-10-29 Georg BrandlPatch #1583880: fix tarfile's problems with long names...
2006-10-29 Georg BrandlBug #1357915: allow all sequence types for shell argume...
2006-10-29 Georg BrandlRemove trailing comma.
2006-10-29 Georg BrandlBug #1586448: the compiler module now emits the same...
2006-10-29 Georg BrandlClean up a leftover from old listcomp generation code.
2006-10-29 Georg BrandlFix codecs.EncodedFile which did not use file_encoding...
2006-10-28 Neal NorwitzFrom SF 1557890, fix problem of using wrong type in...
2006-10-28 Neal NorwitzFix test_modulefinder so it doesn't fail when run after...
2006-10-28 Neal NorwitzDon't inline Py_ADDRESS_IN_RANGE with gcc 4+ either.
2006-10-28 Neal NorwitzPrevent crash if alloc of garbage fails. Found by...
2006-10-28 Neal NorwitzFix bug #1565514, SystemError not raised on too many...
2006-10-28 Neal NorwitzFix crash in test on HP-UX. Apparently, it's not possi...
2006-10-28 Neal NorwitzFix warnings with HP's C compiler. It doesn't recogniz...
2006-10-28 Neal NorwitzAdd some asserts. In sysmodule, I think these were...
2006-10-28 Georg Brandlmake test_grammar pass with python -O
2006-10-28 Georg BrandlFix nth() itertool recipe.
2006-10-28 Georg BrandlConvert test_opcodes to unittest.
2006-10-28 Georg BrandlConvert test_math to unittest.
2006-10-28 Georg BrandlUpdate outstanding bugs test file.
2006-10-28 Georg BrandlConvert test_global, test_scope and test_grammar to...
2006-10-28 Walter DörwaldPort test_bufio to unittest.
2006-10-27 Georg BrandlPatch #1552024: add decorator support to unparse.py...
2006-10-27 Thomas HellerModulefinder now handles absolute and relative imports...
2006-10-27 Thomas HellerWindowsError.str should display the windows error code,
2006-10-27 Andrew M. Kuchling[Patch #1503717] Tiny patch from Chris AtLee to stop...
2006-10-27 Andrew M. KuchlingCheck db_setup_debug for a few print statements; change...
2006-10-27 Andrew M. Kuchling[Patch #1574068 by Scott Dial] urllib and urllib2 were...
2006-10-27 Andrew M. KuchlingClarify docstring
2006-10-27 Andrew M. Kuchling[Bug #1575506] The _singlefileMailbox class was using...
2006-10-27 Andrew M. Kuchling[Bug #1576241] Let functools.wraps work with built...
2006-10-27 Andrew M. KuchlingPoint users to the subprocess module in the docs for...
2006-10-27 Andrew M. Kuchling[Bug #1542016] Report PCALL_POP value. This makes...
2006-10-27 Andrew M. Kuchling[Bug #1562583] Mention the set_reuse_addr() method
2006-10-27 Andrew M. Kuchling[Bug #1583946] Reword description of server and issuer
2006-10-27 Andrew M. Kuchling[Bug #1585690] Note that line_num was added in Python 2.5
2006-10-27 Andrew M. KuchlingSome wording changes and markup fixes
2006-10-27 Andrew M. KuchlingAdd item
2006-10-27 Andrew M. KuchlingSet svn:keywords property
2006-10-27 Martin v. LöwisPatch #1567274: Support SMTP over TLS.
2006-10-27 Martin v. LöwisGet DBL_MAX from float.h not values.h. Will backport.
2006-10-27 Martin v. LöwisCheck for values.h. Will backport.
2006-10-27 Martin v. LöwisPatch #1549049: Rewrite type conversion in structmember.
2006-10-26 Andrew M. KuchlingTypo fix
2006-10-26 Andrew M. Kuchling[Bug #1579796] Wrong syntax for PyDateTime_IMPORT in...
2006-10-24 Georg BrandlPatch [ 1583506 ] tarfile.py: 100-char filenames are...
2006-10-22 Martin v. LöwisRemove passwd.adjunct.byname from list of maps
2006-10-22 Martin v. Löwis- Patch #1560695: Add .note.GNU-stack to ctypes' sysv...
2006-10-22 Martin v. LöwisPatch #1580872: Remove duplicate declaration of PyCalla...
2006-10-22 Ronald OussorenPatch #1580674: with this patch os.readlink uses the...
2006-10-22 Walter DörwaldPort test___future__ to unittest.
2006-10-19 Andrew M. Kuchling[Bug #1576348] Fix typo in example
2006-10-19 Martin v. LöwisRestore CFLAGS after checking for __attribute__
2006-10-19 Martin v. LöwisFix various minor errors in passing arguments to
2006-10-19 Martin v. LöwisAdd check for the PyArg_ParseTuple format, and declare
2006-10-18 Tim PetersAdd missing svn:eol-style to text files.
2006-10-18 Tim PetersWhitespace normalization.
2006-10-18 Tim PetersnewIobject(): repaired incorrect cast to quiet MSVC...
2006-10-17 Thomas Hellerctypes callback functions only support 'fundamental...
2006-10-17 Martin v. LöwisForward-port r52358:
2006-10-17 Martin v. LöwisRemove obsolete file. Will backport.
2006-10-17 Martin v. LöwisPatch #1457736: Update VC6 to use current PCbuild settings.
2006-10-16 Brett CannonFix turtle so that you can launch the demo2 function...
2006-10-15 Martin v. LöwisMention the bdist_msi module. Will backport to 2.5.
2006-10-15 Martin v. LöwisRemove binary property, set eol-style to CRLF instead.
2006-10-15 Martin v. LöwisDrop binary property on dsp files, set eol-style
2006-10-15 Martin v. LöwisSet the eol-style for project files to "CRLF".
2006-10-15 Martin v. LöwisRound to int, because some systems support sub-second...
2006-10-15 Martin v. LöwisBug #1567666: Emulate GetFileAttributesExA for Win95.
2006-10-15 Martin v. LöwisLoosen the test for equal time stamps.
2006-10-15 Martin v. LöwisPatch #1577551: Add ctypes and ET build support for...
2006-10-15 Martin v. LöwisPatch #1576166: Support os.utime for directories on...
2006-10-15 Martin v. LöwisPatch #1576954: Update VC6 build directory; remove...
next