Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix typo. | Raymond Hettinger | 2009-01-29 | 1 | -1/+1 | |
| | ||||||
* | Update itertools.__doc__ to include all tools. | Raymond Hettinger | 2009-01-29 | 1 | -5/+12 | |
| | ||||||
* | Promote combinations_with_replacement() from a recipe to a regular itertool. | Raymond Hettinger | 2009-01-27 | 1 | -2/+251 | |
| | ||||||
* | Fix signed/unsigned mismatch. | Raymond Hettinger | 2009-01-26 | 1 | -1/+1 | |
| | ||||||
* | Promote compress() from a recipe to being a regular itertool. | Raymond Hettinger | 2009-01-25 | 1 | -0/+157 | |
| | ||||||
* | fix building the core with --disable-unicode | Benjamin Peterson | 2009-01-25 | 1 | -0/+2 | |
| | | | | | I changed some bytearray methods to use strings instead of unicode like bytes_repr Also, bytearray.fromhex() can take strings as well as unicode | |||||
* | Issue #1672332: Fix unpickling of subnormal floats, which was raising | Mark Dickinson | 2009-01-24 | 1 | -1/+2 | |
| | | | | | ValueError on some platforms as a result of the platform strtod setting errno on underflow. | |||||
* | Issue #5008: When a file is opened in append mode with the new IO library, | Antoine Pitrou | 2009-01-21 | 1 | -0/+13 | |
| | | | | | | do an explicit seek to the end of file (so that e.g. tell() returns the file size rather than 0). This is consistent with the behaviour of the traditional 2.x file object. | |||||
* | backport r68802 (bugfix) | Benjamin Peterson | 2009-01-20 | 1 | -1/+1 | |
| | ||||||
* | issue 5002: fix windows warning that I intro'ed with r68768 | Jesse Noller | 2009-01-20 | 1 | -3/+1 | |
| | ||||||
* | simplify code | Benjamin Peterson | 2009-01-19 | 1 | -4/+2 | |
| | ||||||
* | Resolve issue 3321: (segfault) _multiprocessing.Connection() doesn't check ↵ | Jesse Noller | 2009-01-19 | 2 | -2/+14 | |
| | | | | handle | |||||
* | Issue 4957 | Kristján Valur Jónsson | 2009-01-19 | 1 | -1/+1 | |
| | | | | Let os.ftruncate raise OSError like documented. | |||||
* | raise an OSError for invalid fds #4991 | Benjamin Peterson | 2009-01-19 | 1 | -0/+20 | |
| | ||||||
* | #4077: No need to append \n when calling Py_FatalError | Amaury Forgeot d'Arc | 2009-01-17 | 1 | -1/+1 | |
| | | | | + fix a declaration to make it match the one in pythonrun.h | |||||
* | Fix refcount leak in error cases. Bug found by coverity. | Thomas Heller | 2009-01-13 | 1 | -1/+4 | |
| | ||||||
* | #3720: Interpreter crashes when an evil iterator removes its own next function. | Amaury Forgeot d'Arc | 2009-01-12 | 1 | -11/+0 | |
| | | | | | | Now the slot is filled with a function that always raises. Will not backport: extensions compiled with 2.6.x would not run on 2.6.0. | |||||
* | Issue #3860: GzipFile and BZ2File now support the context manager protocol. | Antoine Pitrou | 2009-01-10 | 1 | -0/+32 | |
| | ||||||
* | Issue #4074: Change the criteria for doing a full garbage collection (i.e. | Antoine Pitrou | 2009-01-09 | 1 | -1/+65 | |
| | | | | | | collecting the oldest generation) so that allocating lots of objects without destroying them does not show quadratic performance. Based on a proposal by Martin von Löwis at http://mail.python.org/pipermail/python-dev/2008-June/080579.html. | |||||
* | Issue 4293: Make Py_AddPendingCall() thread safe | Kristján Valur Jónsson | 2009-01-09 | 1 | -0/+38 | |
| | | | | Add test cases and documentation | |||||
* | Fix issue 4884, preventing a crash in the socket code when python is compiled | Jeffrey Yasskin | 2009-01-09 | 1 | -1/+5 | |
| | | | | with llvm-gcc and run with a glibc <2.10. | |||||
* | be more specific in -3 option help | Benjamin Peterson | 2009-01-09 | 1 | -1/+1 | |
| | ||||||
* | Forward port r68394 for issue 4816. | Raymond Hettinger | 2009-01-08 | 1 | -10/+2 | |
| | ||||||
* | The _tkinter module functions "createfilehandler", "deletefilehandler", | Guilherme Polo | 2009-01-03 | 1 | -0/+36 | |
| | | | | | "createtimerhandler", "mainloop", "dooneevent" and "quit" have been deprecated for removal in 3.x (part of issue #3638). | |||||
* | Issue #4051: Prevent conflict of UNICODE macros in cPickle. | Martin v. Löwis | 2009-01-02 | 1 | -0/+8 | |
| | ||||||
* | #4801 _collections module fails to build on cygwin. | Amaury Forgeot d'Arc | 2009-01-02 | 1 | -2/+2 | |
| | | | | | _PyObject_GC_TRACK is the macro version of PyObject_GC_Track, and according to documentation it should not be used for extension modules. | |||||
* | Issue #4797: IOError.filename was not set when _fileio.FileIO failed to open | Hirokazu Yamamoto | 2009-01-01 | 1 | -3/+4 | |
| | | | | file with `str' filename on Windows. | |||||
* | Issue #3680: Reference cycles created through a dict, set or deque iterator ↵ | Antoine Pitrou | 2009-01-01 | 1 | -7/+16 | |
| | | | | did not get collected. | |||||
* | #4228: Pack negative values the same way as 2.4 | Georg Brandl | 2009-01-01 | 1 | -6/+6 | |
| | | | | in struct's L format. | |||||
* | Just inserted blank line. | Hirokazu Yamamoto | 2008-12-31 | 1 | -0/+1 | |
| | ||||||
* | Fixed compile error on windows. | Hirokazu Yamamoto | 2008-12-31 | 1 | -1/+2 | |
| | ||||||
* | Issue #4701: implicitly call PyType_Ready from PyObject_Hash | Nick Coghlan | 2008-12-30 | 1 | -0/+101 | |
| | ||||||
* | Issue #1040026: Fix os.times result on systems where HZ is incorrect. | Martin v. Löwis | 2008-12-29 | 1 | -9/+16 | |
| | ||||||
* | #4764 in io.open, set IOError.filename when trying to open a directory on ↵ | Benjamin Peterson | 2008-12-29 | 1 | -4/+4 | |
| | | | | POSIX platforms | |||||
* | Fix issue #4730: cPickle corrupts high-unicode strings. | Alexandre Vassalotti | 2008-12-27 | 1 | -30/+79 | |
| | | | | | Update outdated copy of PyUnicode_EncodeRawUnicodeEscape. Add a test case. | |||||
* | make global static | Benjamin Peterson | 2008-12-23 | 1 | -1/+1 | |
| | ||||||
* | use a global variable, so the compiler doesn't optimize the assignment out | Benjamin Peterson | 2008-12-23 | 1 | -2/+3 | |
| | ||||||
* | silence compiler warning | Benjamin Peterson | 2008-12-22 | 1 | -0/+1 | |
| | ||||||
* | fix #4720: the format to PyArg_ParseTupleAndKeywords can now start with '|' | Benjamin Peterson | 2008-12-22 | 1 | -0/+27 | |
| | ||||||
* | remove redundant sentence | Benjamin Peterson | 2008-12-20 | 1 | -1/+1 | |
| | ||||||
* | beef up docstring | Benjamin Peterson | 2008-12-20 | 1 | -1/+4 | |
| | ||||||
* | Issue #2467: gc.DEBUG_STATS reports invalid elapsed times. | Antoine Pitrou | 2008-12-17 | 1 | -23/+26 | |
| | | | | Patch by Neil Schemenauer, very slightly modified. | |||||
* | #3954: Fix error handling code in _hotshot.logreader | Amaury Forgeot d'Arc | 2008-12-15 | 1 | -10/+8 | |
| | | | | Will port to 2.6. hotshot was deleted from python 3. | |||||
* | Fix several issues relating to access to source code inside zipfiles. ↵ | Nick Coghlan | 2008-12-14 | 1 | -0/+31 | |
| | | | | Initial work by Alexander Belopolsky. See Misc/NEWS in this checkin for details. | |||||
* | Issues #3167, #3682: tests for math.log and math.log10 were failing on | Mark Dickinson | 2008-12-11 | 1 | -3/+55 | |
| | | | | | | Solaris and OpenBSD. Fix this by handling special values and domain errors directly in mathmodule.c, passing only positive nonspecial floats to the system log/log10. | |||||
* | issue 4483 - dbm build failures on systems with gdbm_compat lib. | Skip Montanaro | 2008-12-06 | 1 | -0/+3 | |
| | ||||||
* | #4529: fix parser's validation for try-except-finally statements. | Georg Brandl | 2008-12-05 | 1 | -23/+23 | |
| | ||||||
* | Issue #4025 again | Christian Heimes | 2008-12-03 | 1 | -1/+1 | |
| | | | | Converted a C99 style comment to a C89 style comment (found by MAL). | |||||
* | Move definition int sval into branch of ifdef where it is used. | Jeremy Hylton | 2008-11-28 | 1 | -1/+1 | |
| | | | | Otherwise, you get a warning about an undefined variable. | |||||
* | - Modules/Setup.dist: Update _elementtree, add _bisect, datetime | Matthias Klose | 2008-11-27 | 1 | -1/+3 | |
| |