- 10 Apr, 2000 24 commits
-
-
Guido van Rossum authored
built-in messages.
-
Fred Drake authored
allowing it to be run from anywhere, including through a symlink to the actual idle.py script.
-
Guido van Rossum authored
comparing code objects. This give sless surprising results in -Optimized code. It also sorts code objects by name, now. [I changed the patch to hash() slightly to touch fewer lines.]
-
Fred Drake authored
Instead of assuming that the number process ids of the threads is the same as the process id of the controlling process, use a copy of the dictionary and check for changes in the process ids of the threads from the thread's process ids in the parent process. This makes the test make more sense on systems which assign a new pid to each thread (i.e., Linux). This doesn't fix the other problems evident with this test on Linux.
-
Guido van Rossum authored
* '...%s...' % u"abc" now coerces to Unicode just like string methods. Care is taken not to reevaluate already formatted arguments -- only the first Unicode object appearing in the argument mapping is looked up twice. Added test cases for this to test_unicode.py.
-
Guido van Rossum authored
* More test cases for test_contains.py.
-
Guido van Rossum authored
* New exported API PyUnicode_Resize() * The experimental Keep-Alive optimization was turned back on after some tweaks to the implementation. It should now work without causing core dumps... this has yet to tested though (switching it off is easy: see the unicodeobject.c file for details). * Fixed a memory leak in the Unicode freelist cleanup code. * Added tests to correctly process the return code from _PyUnicode_Resize(). * Fixed a bug in the 'ignore' error handling routines of some builtin codecs. Added test cases for these to test_unicode.py.
-
Guido van Rossum authored
* string_contains now calls PyUnicode_Contains() only when the other operand is a Unicode string (not whenever it's not a string). * New format style '%r' inserts repr(arg) instead of str(arg). * '...%s...' % u"abc" now coerces to Unicode just like string methods. Care is taken not to reevaluate already formatted arguments -- only the first Unicode object appearing in the argument mapping is looked up twice. Added test cases for this to test_unicode.py.
-
Guido van Rossum authored
* TypeErrors during comparing of mixed type arguments including a Unicode object are now masked (just like they are for all other combinations).
-
Guido van Rossum authored
-
Guido van Rossum authored
recently changed.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Greg Ward authored
to account for it not being defined in the constructor.
-
Guido van Rossum authored
In line with a similar checkin to object.c a while ago, this patch gives a more descriptive error message for an attribute error on a class instance. The message now looks like: AttributeError: 'Descriptor' instance has no attribute 'GetReturnType'
-
Guido van Rossum authored
to prevent possible buffer overruns.
-
Guido van Rossum authored
-
Greg Ward authored
-
Greg Ward authored
crashing when self.force not defined. Revise 'copy_file()' and 'copy_tree()' docstrings accordingly. Remove 'hasattr()' check for 'self.force' from 'make_file()'.
-
Greg Ward authored
'get_python_lib()'.
-
Greg Ward authored
-
Greg Ward authored
timestamps), so every build_* command has 'self.force', which follows the 'build' command if not set by the user.
-
Greg Ward authored
to all commands in the same way. Several Command methods now either expect 'self.force' to be defined, or check if it is defined and assume it's false if not.
-
Greg Ward authored
-
- 09 Apr, 2000 16 commits
-
-
Greg Ward authored
-
Greg Ward authored
Started writing the "Standard Build and Install" section.
-
Just van Rossum authored
-
Just van Rossum authored
-
Just van Rossum authored
-
Just van Rossum authored
-
Just van Rossum authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Jack Jansen authored
-
Greg Ward authored
Distutils manual.
-
Greg Ward authored
checking it in so I can move things around in the CVS repository.
-
Greg Ward authored
(also needed by inst.tex).
-
Greg Ward authored
Added code to include source files from 'build_clib' command to default file list -- currently this won't work, since 'build_clib' doesn't have a 'get_source_files()' method!
-
Greg Ward authored
-
Greg Ward authored
-