| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Patch for bug reported in patch #686627: import race condition in | Marc-André Lemburg | 2003-02-14 | 1 | -1/+1 |
|
|
* | - Finally fixed the bug in compile() and exec where a string ending | Guido van Rossum | 2003-02-13 | 2 | -7/+5 |
|
|
* | Cleanup from patch #683257: | Neal Norwitz | 2003-02-12 | 1 | -4/+7 |
|
|
* | Provide access to the import lock, fixing SF bug #580952. This is | Guido van Rossum | 2003-02-12 | 1 | -6/+52 |
|
|
* | SF #660455 : patch by NNorwitz. | Guido van Rossum | 2003-02-12 | 1 | -1/+2 |
|
|
* | Change filtertuple() to use tp_as_sequence->sq_item | Walter Dörwald | 2003-02-10 | 1 | -1/+6 |
|
|
* | Squashed compiler wng about signed/unsigned clash in comparison. | Tim Peters | 2003-02-10 | 1 | -1/+1 |
|
|
* | Change filterstring() and filterunicode(): If the | Walter Dörwald | 2003-02-10 | 1 | -43/+48 |
|
|
* | My previous checkin caused compile() to no longer accept buffers, as noted | Just van Rossum | 2003-02-10 | 1 | -5/+7 |
|
|
* | patch #683515: "Add unicode support to compile(), eval() and exec" | Just van Rossum | 2003-02-10 | 3 | -9/+56 |
|
|
* | Small function call optimization and special build option for call stats. | Jeremy Hylton | 2003-02-05 | 3 | -14/+171 |
|
|
* | If a float is passed where a int is expected, issue a DeprecationWarning | Neil Schemenauer | 2003-02-04 | 1 | -12/+25 |
|
|
* | Make sure filter() never returns tuple, str or unicode | Walter Dörwald | 2003-02-04 | 1 | -5/+22 |
|
|
* | PyUnicode_Resize() doesn't free its argument in case of a failure, | Walter Dörwald | 2003-02-04 | 1 | -1/+1 |
|
|
* | filterstring() and filterunicode() in Python/bltinmodule.c | Walter Dörwald | 2003-02-04 | 1 | -8/+70 |
|
|
* | SF #661437, apply() should get PendingDeprecation | Neal Norwitz | 2003-02-03 | 1 | -0/+3 |
|
|
* | Provide __module__ attributes for functions defined in C and Python. | Jeremy Hylton | 2003-01-31 | 2 | -8/+28 |
|
|
* | Style consistency, so "grep ^function ..." works as expected. | Fred Drake | 2003-01-30 | 1 | -2/+4 |
|
|
* | Patch #636005: Filter unicode into unicode. | Martin v. Löwis | 2003-01-25 | 1 | -0/+62 |
|
|
* | Raise a TypeError if a float is passed when an integer is specified. | Neil Schemenauer | 2003-01-24 | 1 | -6/+24 |
|
|
* | MacPython-OS9 has had an abort() function for quite a while now, so there's n... | Jack Jansen | 2003-01-24 | 1 | -3/+0 |
|
|
* | MacPython-OS9 specific fix: If there are non-string items on sys.path don't t... | Jack Jansen | 2003-01-24 | 1 | -15/+18 |
|
|
* | Patch #671459: Invoke import hooks in Py_NewInterpreter. | Martin v. Löwis | 2003-01-22 | 1 | -0/+1 |
|
|
* | Don't use Posix semaphores on Solaris 8. Fixes #662787. | Martin v. Löwis | 2003-01-21 | 1 | -1/+1 |
|
|
* | SF patch #670367: Micro-optimizations for ceval.c | Raymond Hettinger | 2003-01-19 | 1 | -18/+13 |
|
|
* | It turns out that some calls return AEDesc records that are "borrowed", | Jack Jansen | 2003-01-17 | 1 | -0/+1 |
|
|
* | A. Lloyd Flanagan pointed out a spelling error on c.l.py. | Michael W. Hudson | 2003-01-16 | 1 | -1/+1 |
|
|
* | Replaced POP() with STACKADJ(-1) on lines where the result wasn't used. | Raymond Hettinger | 2003-01-14 | 1 | -2/+2 |
|
|
* | As discussed on python-dev, removed from DUP_TOPX support for the | Raymond Hettinger | 2003-01-10 | 1 | -35/+0 |
|
|
* | As discussed briefly on python-dev, add Pending Deprecation Warning | Neal Norwitz | 2003-01-10 | 1 | -3/+5 |
|
|
* | SF patch #664320: Replace push/pop clusters in ceval.c | Raymond Hettinger | 2003-01-09 | 1 | -150/+167 |
|
|
* | Patch #664376: sys.path[0] should contain absolute pathname. | Thomas Heller | 2003-01-08 | 1 | -0/+12 |
|
|
* | SF bug #655271: Slightly modify locals() doc | Raymond Hettinger | 2003-01-04 | 1 | -1/+1 |
|
|
* | Another copyright update. (JvR: can you backport this to the 2.3a1 | Guido van Rossum | 2003-01-02 | 1 | -1/+1 |
|
|
* | SF patch [ 597919 ] compiler package and SET_LINENO | Jeremy Hylton | 2002-12-31 | 1 | -0/+3 |
|
|
* | Since the *_Init() are private, prefix with _, suggested by Skip | Neal Norwitz | 2002-12-31 | 1 | -2/+2 |
|
|
* | Fix SF #639945, 64-bit bug on AIX | Neal Norwitz | 2002-12-31 | 1 | -3/+2 |
|
|
* | SF #561244, Micro optimizations | Neal Norwitz | 2002-12-30 | 1 | -0/+6 |
|
|
* | PEP 302 + zipimport: | Just van Rossum | 2002-12-30 | 3 | -20/+240 |
|
|
* | Make error message more specific for min() and max(). | Raymond Hettinger | 2002-12-29 | 1 | -1/+1 |
|
|
* | SF patch #659536: Use PyArg_UnpackTuple where possible. | Raymond Hettinger | 2002-12-29 | 1 | -18/+18 |
|
|
* | Backing out patch #642578 in anticipation of final acceptance of PEP 302. | Just van Rossum | 2002-12-25 | 1 | -147/+0 |
|
|
* | Squashed compiler warnings by adding casts, making sure prototypes are in | Jack Jansen | 2002-12-23 | 2 | -2/+2 |
|
|
* | Oops. Roll back that last change. It wasn't ready for release. :-( | Guido van Rossum | 2002-12-23 | 1 | -96/+30 |
|
|
* | Add warning for assignment to None, True and False. This is patch | Guido van Rossum | 2002-12-23 | 1 | -30/+96 |
|
|
* | SF # 654960, remove unnecessary static variable | Neal Norwitz | 2002-12-18 | 1 | -9/+3 |
|
|
* | Fixing bug | Gustavo Niemeyer | 2002-12-16 | 1 | -2/+2 |
|
|
* | Got rid of old (non-carbon-ppc and even cfm68k) file extensions for | Jack Jansen | 2002-12-16 | 1 | -8/+0 |
|
|
* | Fixed potential crash: v can be NULL here, so use Py_XDECREF rather than Py_D... | Just van Rossum | 2002-12-15 | 1 | -1/+1 |
|
|
* | Added missing casts. | Jack Jansen | 2002-12-13 | 2 | -4/+4 |
|
|