- 21 Sep, 2000 7 commits
-
-
Lars Gustäbel authored
-
Tim Peters authored
Don't ship debug .dll, .pyd or .lib files. Saves space. Bumped the title to beta 2.
-
Tim Peters authored
Note a curious extension to the std C rules: x, X and o formatting can never produce a sign character in C, so the '+' and ' ' flags are meaningless for them. But unbounded ints *can* produce a sign character under these conversions (no fixed- width bitstring is wide enough to hold all negative values in 2's-comp form). So these flags become meaningful in Python when formatting a Python long which is too big to fit in a C long. This required shuffling around existing code, which hacked x and X conversions to death when both the '#' and '0' flags were specified: the hacks weren't strong enough to deal with the simultaneous possibility of the ' ' or '+' flags too, since signs were always meaningless before for x and X conversions. Isomorphic shuffling was required in unicodeobject.c. Also added dozens of non-trivial new unbounded-int test cases to test_format.py.
-
Fred Drake authored
reported by Detlef Lannert <lannert@uni-duesseldorf.de>.
-
Fred Drake authored
reported by Detlef Lannert <lannert@uni-duesseldorf.de>.
-
Fred Drake authored
<lannert@uni-duesseldorf.de>.
-
Greg Ward authored
-
- 20 Sep, 2000 9 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Fred Drake authored
once if all the temporary files are available from building a DVI file. This can avoid two runs of pdflatex.
-
Fred Drake authored
not as a user-controlled parameter.
-
Fred Drake authored
-
Fred Drake authored
sub-modules).
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Guido van Rossum authored
-
- 19 Sep, 2000 24 commits
-
-
Greg Ward authored
resource files. The gist of the patch is to treat ".rc" and ".mc" files as source files; ".mc" files are compiled to ".rc" and then ".res", and ".rc" files are compiled to ".res". Wish I knew what all these things stood for...
-
Tim Peters authored
recent changes to ntpath.py and posixmodule.c. Thanks to Guido for pointing out the inconsistency!
-
Jack Jansen authored
Added GetArgs dialog to EasyDialogs, a very nifty (if I may say so:-) way to create a unix-style sys.argv.
-
Marc-André Lemburg authored
which implements the automatic conversion from Unicode to a string object using the default encoding. The new API is then put to use to have eval() and exec accept Unicode objects as code parameter. This closes bugs #110924 and #113890. As side-effect, the traditional C APIs PyString_Size() and PyString_AsString() will also accept Unicode objects as parameters.
-
Guido van Rossum authored
The cause was that the replace code necessarily used a PCRE internal function to to template expansion. The fix changes the code to use an SRE internal if SRE is used, and a PCRE internal if SRE is used; in a way that should work with 1.5.2. The solution can be sped up tremendously under the assumption that the choice between sre and pre is not changed during the execution of the program; especially replace-all will be slow. But I'll leave that to someone else.
-
Tim Peters authored
"a:b", not "a:/b". Similar change was made to posixmodule.c earlier.
-
Tim Peters authored
Added new test for new __contains__ method. Extensive editing to get rid of asserts.
-
Tim Peters authored
-
Paul Prescod authored
-
Fred Drake authored
Document the __contains__() method. (Patch slightly modified by FLD.) This closes SourceForge patch #101387.
-
Fred Drake authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
Closes Bug #114775.
-
Fred Drake authored
off an existing anchor tag if available (I think it always is, but am not completely sure).
-
Fred Drake authored
discussion on python-dev.
-
Barry Warsaw authored
zip(None) tests. Found by Finn Bock a while ago.
-
Guido van Rossum authored
-
Martin v. Löwis authored
-
Thomas Heller authored
on other systems, so that data, headers, scripts are included in the installer.
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Tim Peters authored
When reading a short, sign-extend on platforms where shorts are bigger than 16 bits. When reading a long, repair the unportable sign extension that was being done for 64-bit machines (it assumed that signed right shift sign-extends).
-
Guido van Rossum authored
style conventions. (Ping has checkin privileges but apparently ignores them at the moment.) Ping improves a few doc strings and fixes style violations like foo ( bar ). An addition of my own: rearrange the printing of various items in test() so that the (long) environment comes at the end. This avoids having to scroll if you want to see the current directory or command line arguments.
-
Guido van Rossum authored
Macintosh (the latter untested). This closes Bug #110839.
-