- 03 Eyl, 2002 7 kayıt (commit)
-
-
Guido van Rossum yazdı
64bit, big endian (issue 2 only). This adds a bunch of memcpy calls via a temporary variable to avoid alignment errors. That's needed for some platforms.
-
Guido van Rossum yazdı
The new execvpe code would sometimes do the wrong thing when a non-executable file existed earlier in the path and an executable file of the same name existed later in the path. This patch restores the proper behavior (which is to execute the second file). When only a non-executable file exists, the correct error is still reported.
-
Tim Peters yazdı
-
Walter Dörwald yazdı
of PyString_DecodeEscape(). This prevents a call to _PyString_Resize() for the empty string, which would result in a PyErr_BadInternalCall(), because the empty string has more than one reference. This closes SF bug http://www.python.org/sf/603937
-
Skip Montanaro yazdı
-
Martin v. Löwis yazdı
-
Andrew M. Kuchling yazdı
-
- 02 Eyl, 2002 8 kayıt (commit)
-
-
Kurt B. Kaiser yazdı
521908 (again) to MAIN The patch applied by Steven was inadvertently reverted during the transition to GRPC. Python 2.3a0 (#3, May 8 2002, 23:37:01) [GCC egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)] on linux2 Type "copyright", "credits" or "license" for more information. GRPC IDLE Fork 0.8.2 >>> print u'\xbfQu\xe9 pas\xf3?' ¿QuÃ
© pasó? Modified Files: OutputWindow.py -
Walter Dörwald yazdı
(Spotted by Neal Norwitz)
-
Walter Dörwald yazdı
UnicodeTranslateError doesn't have an encoding attribute. (Spotted by Neal Norwitz)
-
Walter Dörwald yazdı
to prevent buffer overflows (spotted by Neal Norwitz).
-
Fred Drake yazdı
the "safety" parentheses since some older compilers refuse to compile the module then, claiming that static initializers are non-constant. This doesn't actually make any difference for Python, since these definitions are not used when compiling with a version of Python that already defines the PyDoc_* macros.
-
-
Jack Jansen yazdı
Use the build python for as many things as possible.
-
Jack Jansen yazdı
Tweaks to make builds work for non-standard dstroot.
-
- 01 Eyl, 2002 2 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Guido van Rossum yazdı
-
- 31 Agu, 2002 5 kayıt (commit)
-
-
Raymond Hettinger yazdı
Now all non-mutating dict methods are in the proxy also. Inspired by SF bug #602232,
-
Guido van Rossum yazdı
to 62011. This should get the snake-farm to throw away its old .pyc files, amongst others.
-
Jack Jansen yazdı
and the selection can be looked up, and so can the Carbon manual. From the help menu you can also get to the online documentation, the Python website and the MacPython page. Untested in MacPython-OS9.
-
Jack Jansen yazdı
folder. This allows running the IDE from the source tree on OSX.
-
Jack Jansen yazdı
-
- 30 Agu, 2002 5 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
building the user menus.
-
Jack Jansen yazdı
Fix for sh: use : in stead of an empty then clause in an if.
-
Michael W. Hudson yazdı
Use a slightly different strategy to determine when not to call the line trace function. This removes the need for the RETURN_NONE opcode, so that's gone again. Update docs and comments to match. Thanks to Neal and Armin! Also add a test suite. This should have come with the original patch...
-
Jack Jansen yazdı
in stead of 644 (755). This makes a subsequent install fail. Changed the INSTALL_MODE_FLAG to fix this.
-
- 29 Agu, 2002 13 kayıt (commit)
-
-
Jack Jansen yazdı
it. Also fixed menu IDs to be signed in do_menudispatch. this is an incompatible change, but I don't think it'll hurt anyone.
-
Jack Jansen yazdı
of the defunct Balloons API. Help tags are TBD, but at least this gives us access to the help menu.
-
Neal Norwitz yazdı
-
Jack Jansen yazdı
-
Barry Warsaw yazdı
course.
-
Barry Warsaw yazdı
because it added it to 12 PM too. 12 PM should be hour 12 not hour 24. Also cleaned up a minor style nit. There are more style problems in this file that I'll clean up next (but I didn't want them to overwhelm the substance of this fix).
-
Barry Warsaw yazdı
localtime, which in -0400 is 12 noon GMT. The bug boiled down to broken conversion of 12 PM to hour 12 for the '%I %p' format string. Added a test for this specific condition: Strptime12AMPMTests. Fix to _strptime.py coming momentarily.
-
Raymond Hettinger yazdı
Uses the fast update() method when a dictionary is available.
-
Guido van Rossum yazdı
the tokenize module by test_tokenize.py. The FutureWarnings only appeared during installation, and I've figured out a way to suppress those in a different way.
-
Guido van Rossum yazdı
This seems the sanest thing to do.
-
Guido van Rossum yazdı
of FutureWarnings. Added a comment explaining the situation.
-
Raymond Hettinger yazdı
when given its own type as an argument.
-
Barry Warsaw yazdı
sure these are the best fixes. - Test maxint-1 against the negative octal constant -020000000000 - Comment out the tests for oct -1 and hex -1, since 037777777777 and 0xffffffff raise FutureWarnings now and in Python 2.4 those constants will produce positive values, not negative values. So the existing test seems to test something that won't be true in 2.4.
-