]> granicus.if.org Git - python/log
python
21 years agoRespect a module's __all__ attribute. Closes #969938.
Skip Montanaro [Fri, 11 Jun 2004 04:46:12 +0000 (04:46 +0000)]
Respect a module's __all__ attribute.  Closes #969938.

21 years agoFuther improvements to frozenset hashing (based on Yitz Gale's battery of
Raymond Hettinger [Thu, 10 Jun 2004 22:41:48 +0000 (22:41 +0000)]
Futher improvements to frozenset hashing (based on Yitz Gale's battery of
tests which nicely highly highlight weaknesses).

* Initial value is now a large prime.
* Pre-multiply by the set length to add one more basis of differentiation.
* Work a bit harder inside the loop to scatter bits from sources that
  may have closely spaced hash values.

All of this is necessary to make up for keep the hash function commutative.
Fortunately, the hash value is cached so the call to frozenset_hash() will
only occur once per set.

21 years agoFixups to the hash function for frozensets.
Raymond Hettinger [Thu, 10 Jun 2004 21:38:41 +0000 (21:38 +0000)]
Fixups to the hash function for frozensets.

* Non-zero initial value so that hash(frozenset()) != hash(0).
* Final permutation to differentiate nested sets.
* Add logic to make sure that -1 is not a possible hash value.

21 years agoAdd a final permutation step to the tuple hash function.
Raymond Hettinger [Thu, 10 Jun 2004 18:42:15 +0000 (18:42 +0000)]
Add a final permutation step to the tuple hash function.

Prevents a collision pattern that occurs with nested tuples.
(Yitz Gale provided code that repeatably demonstrated the weakness.)

21 years agoConvert test_heapq.py to unittests.
Raymond Hettinger [Thu, 10 Jun 2004 05:07:18 +0000 (05:07 +0000)]
Convert test_heapq.py to unittests.

21 years agoSF patch #969791: Add nlargest() and nsmallest() to heapq.
Raymond Hettinger [Thu, 10 Jun 2004 05:03:17 +0000 (05:03 +0000)]
SF patch #969791: Add nlargest() and nsmallest() to heapq.

21 years agoDefining Py_GCC_ATTRIBUTE finds even some more undocumented functions.
Thomas Heller [Wed, 9 Jun 2004 18:50:54 +0000 (18:50 +0000)]
Defining Py_GCC_ATTRIBUTE finds even some more undocumented functions.

21 years agoPublic Python functions are nowadays marked PyAPI_FUNC, not DL_IMPORT.
Thomas Heller [Wed, 9 Jun 2004 18:38:20 +0000 (18:38 +0000)]
Public Python functions are nowadays marked PyAPI_FUNC, not DL_IMPORT.

21 years agomake a reference to the SimpleHTTPServer module a hyperlink to the
Fred Drake [Wed, 9 Jun 2004 14:50:19 +0000 (14:50 +0000)]
make a reference to the SimpleHTTPServer module a hyperlink to the
docs

21 years agoEnsure path is initialized to prevent freeing random memory
Neal Norwitz [Wed, 9 Jun 2004 01:46:02 +0000 (01:46 +0000)]
Ensure path is initialized to prevent freeing random memory
(reported by Thomas Heller).  If have_unicode_filename is set,
path looks like it will not be used, so there's no need to free it.

21 years agotest_devnull(): Use assertEqual() instead of an assert stmt.
Tim Peters [Tue, 8 Jun 2004 20:34:34 +0000 (20:34 +0000)]
test_devnull():  Use assertEqual() instead of an assert stmt.

21 years agoTeach MSVC 6 about pystrtod.c.
Tim Peters [Tue, 8 Jun 2004 20:32:58 +0000 (20:32 +0000)]
Teach MSVC 6 about pystrtod.c.

21 years agoPatch #774665: Make Python LC_NUMERIC agnostic.
Martin v. Löwis [Tue, 8 Jun 2004 18:52:54 +0000 (18:52 +0000)]
Patch #774665: Make Python LC_NUMERIC agnostic.

21 years agoRemoved test_sitepackages test. Skip discovered that it only passed if Python
Brett Cannon [Tue, 8 Jun 2004 18:25:48 +0000 (18:25 +0000)]
Removed test_sitepackages test.  Skip discovered that it only passed if Python
had already been installed previously.

21 years ago- markup fix
Fred Drake [Tue, 8 Jun 2004 14:01:27 +0000 (14:01 +0000)]
- markup fix
- explain Python/ceval.c from what; lots of people don't use a source
  distro any more

21 years agoFeature request #935915: Add os.path.devnull.
Martin v. Löwis [Tue, 8 Jun 2004 08:29:33 +0000 (08:29 +0000)]
Feature request #935915: Add os.path.devnull.

21 years agoPatch #510695: Add TSC profiling for the VM.
Martin v. Löwis [Tue, 8 Jun 2004 08:17:44 +0000 (08:17 +0000)]
Patch #510695: Add TSC profiling for the VM.

21 years agoNote that memory returned by PyBuffer_New is not specifically aligned.
Neil Schemenauer [Tue, 8 Jun 2004 02:58:50 +0000 (02:58 +0000)]
Note that memory returned by PyBuffer_New is not specifically aligned.
Closes SF bug #472568.

21 years agoSF 952807: Unpickling pickled instances of subclasses of datetime.date,
Tim Peters [Mon, 7 Jun 2004 23:04:33 +0000 (23:04 +0000)]
SF 952807:  Unpickling pickled instances of subclasses of datetime.date,
datetime.datetime and datetime.time could yield insane objects.  Thanks
to Jiwon Seo for the fix.

Bugfix candidate.  I'll backport it to 2.3.

21 years agoAdd genexps to the glossary.
Raymond Hettinger [Mon, 7 Jun 2004 21:52:47 +0000 (21:52 +0000)]
Add genexps to the glossary.

21 years agoFix a refcount bug in an obscure code corner.
Thomas Heller [Mon, 7 Jun 2004 15:12:44 +0000 (15:12 +0000)]
Fix a refcount bug in an obscure code corner.

21 years agoFix a refcount bug in an obscure code corner.
Thomas Heller [Mon, 7 Jun 2004 15:04:10 +0000 (15:04 +0000)]
Fix a refcount bug in an obscure code corner.
Already backported.

21 years agoAnother nit found by Neal Norwitz using pychecker. This was caused by a
Skip Montanaro [Mon, 7 Jun 2004 11:20:40 +0000 (11:20 +0000)]
Another nit found by Neal Norwitz using pychecker.  This was caused by a
too-mechanical translation when converting html() to text() (simply stripped
strong() where it appeared).

21 years agoCleanup: the in operator already returns a bool, no need to bool() it again
Neal Norwitz [Mon, 7 Jun 2004 03:49:50 +0000 (03:49 +0000)]
Cleanup: the in operator already returns a bool, no need to bool() it again
Cleanup: use condition to be consistent with code above
CookieJar is in cookielib

21 years agoThere is no reason to have an underscore after self
Neal Norwitz [Mon, 7 Jun 2004 03:47:06 +0000 (03:47 +0000)]
There is no reason to have an underscore after self

21 years agoRemove a useless operation, setting name to itself
Neal Norwitz [Mon, 7 Jun 2004 03:45:56 +0000 (03:45 +0000)]
Remove a useless operation, setting name to itself

21 years agocorrect name error caught by Neal Norwitz with pychecker
Skip Montanaro [Mon, 7 Jun 2004 02:40:05 +0000 (02:40 +0000)]
correct name error caught by Neal Norwitz with pychecker

21 years agoFix typo in comment.
Raymond Hettinger [Mon, 7 Jun 2004 02:07:15 +0000 (02:07 +0000)]
Fix typo in comment.

21 years ago[Bug #953177] Mention .getlist(); text from Paul Moore
Andrew M. Kuchling [Sun, 6 Jun 2004 23:28:23 +0000 (23:28 +0000)]
[Bug #953177] Mention .getlist(); text from Paul Moore

21 years agoPlug a few memory leaks in utime(). path is allocated from within
Neal Norwitz [Sun, 6 Jun 2004 20:40:27 +0000 (20:40 +0000)]
Plug a few memory leaks in utime().  path is allocated from within
PyArg_ParseTuple() since the format is "et"  This change should
be reviewed carefully.

Bugfix candidate.

21 years agoTry to improve test coverage for utime()
Neal Norwitz [Sun, 6 Jun 2004 20:27:05 +0000 (20:27 +0000)]
Try to improve test coverage for utime()

21 years agoValgrind was reporting an uninitialized read for bad input.
Neal Norwitz [Sun, 6 Jun 2004 20:13:10 +0000 (20:13 +0000)]
Valgrind was reporting an uninitialized read for bad input.
This fixes the problem and the test passes.  I'm not sure
the test is really correct though.  It seems like it would
be better to raise an exception.  I think that wasn't done
for backwards compatability.

Bugfix candidate.

21 years agoLook for the multibyte codec map files in the parent directory too
Neal Norwitz [Sun, 6 Jun 2004 20:09:49 +0000 (20:09 +0000)]
Look for the multibyte codec map files in the parent directory too
This is similar to test_normalization, so that many source trees
can reference the same test file(s).

21 years agoAdd some doc about using valgrind
Neal Norwitz [Sun, 6 Jun 2004 19:58:40 +0000 (19:58 +0000)]
Add some doc about using valgrind

21 years agowhoops, I wanted that commented out by default, will add doc to Misc
Neal Norwitz [Sun, 6 Jun 2004 19:21:34 +0000 (19:21 +0000)]
whoops, I wanted that commented out by default, will add doc to Misc

21 years agoSF bug 881641, make it easier to use valgrind
Neal Norwitz [Sun, 6 Jun 2004 19:20:22 +0000 (19:20 +0000)]
SF bug 881641, make it easier to use valgrind

21 years agoSF 964876 mapping a 0 length file
Tim Peters [Sun, 6 Jun 2004 16:51:46 +0000 (16:51 +0000)]
SF 964876 mapping a 0 length file
Document that it can't be done on Windows.

21 years agoAdded documentation to address SF bug #963246: limitations on multiple
Phillip J. Eby [Sun, 6 Jun 2004 15:59:18 +0000 (15:59 +0000)]
Added documentation to address SF bug #963246: limitations on multiple
inheritance in Python when a C type is one of the bases.

21 years agoadd -L flag to cause leaks(1) command to run just before exit
Skip Montanaro [Sun, 6 Jun 2004 15:53:18 +0000 (15:53 +0000)]
add -L flag to cause leaks(1) command to run just before exit

21 years agoNoam Raphel: Further developemt of CodeContext feature.
Kurt B. Kaiser [Sun, 6 Jun 2004 01:29:22 +0000 (01:29 +0000)]
Noam Raphel:  Further developemt of CodeContext feature.
The visibility state of the code context pane is now persistent between
sessions and the pane does not appear in the shell window.

M CodeContext.py
M EditorWindow.py
M NEWS.txt
M PyShell.py
M config-extensions.def
M configHandler.py

21 years agoDoc fix for SF #962633.
Nicholas Bastin [Sun, 6 Jun 2004 01:17:52 +0000 (01:17 +0000)]
Doc fix for SF #962633.

21 years agoReword message
Andrew M. Kuchling [Sat, 5 Jun 2004 19:49:12 +0000 (19:49 +0000)]
Reword message

21 years agoRemove a number of tests that differ only in input data size. It seems
Neil Schemenauer [Sat, 5 Jun 2004 19:34:28 +0000 (19:34 +0000)]
Remove a number of tests that differ only in input data size. It seems
no bug motivated their inclusion and the chance of them triggering a
problem seems unlikely.  Refactor to reduce code duplication.  Rename
'hamlet_scene' to 'HAMLET_SCENE'.  Test is much faster now.  Closes #960995.

21 years agoFix exception wording
Andrew M. Kuchling [Sat, 5 Jun 2004 19:29:41 +0000 (19:29 +0000)]
Fix exception wording

21 years ago[Bug #918710] Add paragraph to clarify docs
Andrew M. Kuchling [Sat, 5 Jun 2004 19:25:30 +0000 (19:25 +0000)]
[Bug #918710] Add paragraph to clarify docs

21 years ago[Bug #758665] cgitb.scanvars() fails because of an unititialized value variable....
Andrew M. Kuchling [Sat, 5 Jun 2004 19:15:34 +0000 (19:15 +0000)]
[Bug #758665] cgitb.scanvars() fails because of an unititialized value variable.  Patch from Robin Becker.

21 years agoRemove lots of magic constants.
Neil Schemenauer [Sat, 5 Jun 2004 19:02:52 +0000 (19:02 +0000)]
Remove lots of magic constants.

21 years ago[Bug #936837] Add missing word
Andrew M. Kuchling [Sat, 5 Jun 2004 19:00:55 +0000 (19:00 +0000)]
[Bug #936837] Add missing word

21 years agoSF #877165: Give an info about what C++ compiler command should be
Hye-Shik Chang [Sat, 5 Jun 2004 18:37:53 +0000 (18:37 +0000)]
SF #877165: Give an info about what C++ compiler command should be
used in cygwin and mingw32. (Reported by Michael Droettboom)

21 years agoRewrote to use temporary files instead of StringIO objects in most places.
Skip Montanaro [Sat, 5 Jun 2004 17:03:20 +0000 (17:03 +0000)]
Rewrote to use temporary files instead of StringIO objects in most places.
Goal is to work in the direction of universal newline support.

21 years ago[Bug #897935] Fix fd leak in pty.spawn(). Reported by James Henstridge; 2.3 bugfix...
Andrew M. Kuchling [Sat, 5 Jun 2004 16:27:16 +0000 (16:27 +0000)]
[Bug #897935] Fix fd leak in pty.spawn().  Reported by James Henstridge; 2.3 bugfix candidate.

21 years ago[Bug #921657] Allow '@' in unquoted HTML attributes. Not strictly legal according...
Andrew M. Kuchling [Sat, 5 Jun 2004 15:31:45 +0000 (15:31 +0000)]
[Bug #921657] Allow '@' in unquoted HTML attributes.  Not strictly legal according to the HTML REC, but HTMLParser is already a pretty loose parser.  Reported by Bernd Zimmermann.

21 years agoSF bug #964230: random.choice([]) should return more intelligible exception
Raymond Hettinger [Sat, 5 Jun 2004 14:53:22 +0000 (14:53 +0000)]
SF bug #964230:  random.choice([]) should return more intelligible exception

Add a comment to make the traceback less mysterious.

21 years ago[Bug #954364] inspect.getframeinfo() sometimes produces incorrect traceback line...
Andrew M. Kuchling [Sat, 5 Jun 2004 14:11:59 +0000 (14:11 +0000)]
[Bug #954364] inspect.getframeinfo() sometimes produces incorrect traceback line #s; fix is to look at tb.tb_lineno, not tb.frame.f_lineno.  Patch from Robin Becker and me.

21 years agoFix a bug that robotparser starves memory when the server responses
Hye-Shik Chang [Sat, 5 Jun 2004 13:30:56 +0000 (13:30 +0000)]
Fix a bug that robotparser starves memory when the server responses
in HTTP/0.9 due to dissonance of httplib.LineAndFileWrapper and
urllib.addbase.

21 years ago[Bug #841757] Patch from /F to allow Unicode strings as struct keys
Andrew M. Kuchling [Sat, 5 Jun 2004 12:35:58 +0000 (12:35 +0000)]
[Bug #841757] Patch from /F to allow Unicode strings as struct keys

21 years ago[Bug #841757] Exercise handling of Unicode strings
Andrew M. Kuchling [Sat, 5 Jun 2004 12:33:27 +0000 (12:33 +0000)]
[Bug #841757] Exercise handling of Unicode strings

21 years agoSF bug #963956: Bad error mesage when subclassing a module
Raymond Hettinger [Sat, 5 Jun 2004 06:16:22 +0000 (06:16 +0000)]
SF bug #963956:   Bad error mesage when subclassing a module

Add a more informative message for the common user mistake of subclassing
from a module name rather than another class (i.e. random instead of
random.random).

21 years agoRefactored site.py into functions. Also moved over to using sets.
Brett Cannon [Sat, 5 Jun 2004 01:12:51 +0000 (01:12 +0000)]
Refactored site.py into functions.  Also moved over to using sets.

New regression test suite.

21 years agoPatch #926209: Patch to setup.py to run on x86_64 Linux.
Martin v. Löwis [Fri, 4 Jun 2004 13:55:13 +0000 (13:55 +0000)]
Patch #926209: Patch to setup.py to run on x86_64 Linux.

21 years agoSF #966375: Fix typo (Reported by Kristian Ovaska)
Hye-Shik Chang [Fri, 4 Jun 2004 09:33:18 +0000 (09:33 +0000)]
SF #966375: Fix typo (Reported by Kristian Ovaska)

21 years agoReplaced arbitrary addend in tuple_hash with one that is known to generate
Raymond Hettinger [Fri, 4 Jun 2004 06:35:20 +0000 (06:35 +0000)]
Replaced arbitrary addend in tuple_hash with one that is known to generate
many more prime multipliers and that performs well on collision tests.

21 years agoSF patch #961387: Make IDLE's paragraph reformatting width configurable
Raymond Hettinger [Fri, 4 Jun 2004 06:31:08 +0000 (06:31 +0000)]
SF patch #961387:  Make IDLE's paragraph reformatting width configurable

21 years agoReuse width/iswide tests from strings_test. (Suggested by Walter Dörwald)
Hye-Shik Chang [Fri, 4 Jun 2004 04:24:54 +0000 (04:24 +0000)]
Reuse width/iswide tests from strings_test. (Suggested by Walter Dörwald)

21 years agoAdd comments for unicode-only methods to give hints on AttributeError
Hye-Shik Chang [Fri, 4 Jun 2004 04:23:29 +0000 (04:23 +0000)]
Add comments for unicode-only methods to give hints on AttributeError
tracebacks. (Suggested by Walter Dörwald)

21 years agoFix typo.
Hye-Shik Chang [Fri, 4 Jun 2004 03:19:17 +0000 (03:19 +0000)]
Fix typo.

21 years agoAdd iswide() and width() method for UserString according as the
Hye-Shik Chang [Fri, 4 Jun 2004 03:18:12 +0000 (03:18 +0000)]
Add iswide() and width() method for UserString according as the
addition to unicode objects.

21 years agoFix for #860242: use correct names in the "save preferences" dialog.
Jack Jansen [Thu, 3 Jun 2004 21:55:46 +0000 (21:55 +0000)]
Fix for #860242: use correct names in the "save preferences" dialog.

21 years ago- Fix for #862941: "run with commandline python" crashed. Fixed.
Jack Jansen [Thu, 3 Jun 2004 21:27:15 +0000 (21:27 +0000)]
- Fix for #862941: "run with commandline python" crashed. Fixed.
- Prefer to use pythonw (if it exists) for "run with commandline python".

21 years agoif we must argue over the/they, we can just remove the unecessary word
Fred Drake [Thu, 3 Jun 2004 17:19:25 +0000 (17:19 +0000)]
if we must argue over the/they, we can just remove the unecessary word

21 years agoavoid backticks in examples; use repr() instead
Fred Drake [Thu, 3 Jun 2004 16:23:23 +0000 (16:23 +0000)]
avoid backticks in examples; use repr() instead

21 years agoFix for #932977: MacOSX does not pass the whole pathname in argv[0] for
Jack Jansen [Thu, 3 Jun 2004 14:33:03 +0000 (14:33 +0000)]
Fix for #932977: MacOSX does not pass the whole pathname in argv[0] for
#!-scripts, only the filename part, and this can lead to incorrect
initialization of sys.path and sys.executable if there is another python
on $PATH before the one used in #!.

The fix was picked up from the darwinports crowd, thanks!

21 years agoOn startup, attempt to set the working directory to $HOME.
Jack Jansen [Thu, 3 Jun 2004 14:15:50 +0000 (14:15 +0000)]
On startup, attempt to set the working directory to $HOME.

Fixes #913581.

21 years agoFix typo: the-->they
Raymond Hettinger [Thu, 3 Jun 2004 14:13:04 +0000 (14:13 +0000)]
Fix typo:  the-->they

21 years agoFix typo.
Guido van Rossum [Thu, 3 Jun 2004 13:56:05 +0000 (13:56 +0000)]
Fix typo.

21 years agoSmall clarification.
Michael W. Hudson [Thu, 3 Jun 2004 13:36:42 +0000 (13:36 +0000)]
Small clarification.

21 years agoVery large scripts folders could crash the IDE, because it runs out
Jack Jansen [Thu, 3 Jun 2004 13:31:51 +0000 (13:31 +0000)]
Very large scripts folders could crash the IDE, because it runs out
of Menu IDs (of which there are only 255 in Carbon). Fixed by stopping
examining the scripts folder when we allocate menu ID 200.

Fixes #959291. Need to backport.

21 years ago- fix typo reported by John Belmonte
Fred Drake [Thu, 3 Jun 2004 13:31:22 +0000 (13:31 +0000)]
- fix typo reported by John Belmonte
- wrap a long line

21 years agoWarn abou missing mutate flag to ioctl. Fixes #696535.
Martin v. Löwis [Thu, 3 Jun 2004 12:47:26 +0000 (12:47 +0000)]
Warn abou missing mutate flag to ioctl. Fixes #696535.

21 years agoPartial fix for #887242 (link extensions with dynamic_lookup in stead
Jack Jansen [Thu, 3 Jun 2004 12:41:45 +0000 (12:41 +0000)]
Partial fix for #887242 (link extensions with dynamic_lookup in stead
of hard linking against the framework).

If $MACOSX_DEPLOYMENT_TARGET is set, and >= 10.3, during configure we
setup extensions to link with dynamic lookup. We also record the
value in the Makefile.

Distutils checks whether a value for MACOSX_DEPLOYMENT_TARGET was
recorded in the Makefile, and if it was insists that the current
value matches.

This is only a partial fix because it only applies to 2.4, and the
"two python problem" exists with Python 2.3 shipped with MacOSX 10.3,
which we have no influence over.

21 years agoFix the grammar a bit more. (Adjusted by Tony Meyer)
Hye-Shik Chang [Thu, 3 Jun 2004 11:10:58 +0000 (11:10 +0000)]
Fix the grammar a bit more. (Adjusted by Tony Meyer)

21 years agoDrop claims that Unicode always means UCS-2. Fixes #881861.
Martin v. Löwis [Thu, 3 Jun 2004 09:55:28 +0000 (09:55 +0000)]
Drop claims that Unicode always means UCS-2. Fixes #881861.

21 years agoDocument string methods that are locale-dependent. Fixes #935749.
Martin v. Löwis [Thu, 3 Jun 2004 09:47:01 +0000 (09:47 +0000)]
Document string methods that are locale-dependent. Fixes #935749.
Will backport to 2.3.

21 years agoPatch #929192: Improvements to bluetooth support.
Martin v. Löwis [Thu, 3 Jun 2004 09:24:42 +0000 (09:24 +0000)]
Patch #929192: Improvements to bluetooth support.
Added setbdaddr and makebdaddr.
Extended makesockaddr to understand Bluetooth addresses.
Changed getsockaddr to expect the Bluetooth addresses as a string,
not a six element tuple.
Reformatted some of the Bluetooth code to be more consistent with PEP 7.

21 years agoPatch #957240: Add count parameter to asyncore.loop.
Martin v. Löwis [Thu, 3 Jun 2004 09:18:35 +0000 (09:18 +0000)]
Patch #957240: Add count parameter to asyncore.loop.

21 years agoOne more attempt to fix the grammar.
Martin v. Löwis [Thu, 3 Jun 2004 04:03:30 +0000 (04:03 +0000)]
One more attempt to fix the grammar.

21 years agoSF #965425: fix so hyphenated words surrounded by punctuation are
Greg Ward [Thu, 3 Jun 2004 01:59:41 +0000 (01:59 +0000)]
SF #965425: fix so hyphenated words surrounded by punctuation are
wrapped correctly.

21 years agoDo an actual test for xcodebuild, in stead of relying on the user to
Jack Jansen [Wed, 2 Jun 2004 20:06:38 +0000 (20:06 +0000)]
Do an actual test for xcodebuild, in stead of relying on the user to
uncomment the relevant section.

21 years agoRemove the pcre module.
Thomas Heller [Wed, 2 Jun 2004 18:58:55 +0000 (18:58 +0000)]
Remove the pcre module.

21 years agoRename class attribute containing the class to be tested, so the name is the
Walter Dörwald [Wed, 2 Jun 2004 18:42:25 +0000 (18:42 +0000)]
Rename class attribute containing the class to be tested, so the name is the
same as for the string and sequence tests.

21 years agoRemove reference to pcre module
Andrew M. Kuchling [Wed, 2 Jun 2004 17:53:57 +0000 (17:53 +0000)]
Remove reference to pcre module

21 years agoRemove pcre module
Andrew M. Kuchling [Wed, 2 Jun 2004 17:44:36 +0000 (17:44 +0000)]
Remove pcre module

21 years agoDon't build the pcre module any more
Andrew M. Kuchling [Wed, 2 Jun 2004 17:42:56 +0000 (17:42 +0000)]
Don't build the pcre module any more

21 years agoRemove reference to pcre module
Andrew M. Kuchling [Wed, 2 Jun 2004 17:40:43 +0000 (17:40 +0000)]
Remove reference to pcre module

21 years agoRemove pre module
Andrew M. Kuchling [Wed, 2 Jun 2004 17:40:14 +0000 (17:40 +0000)]
Remove pre module

21 years agoFix grammar hopefully. :)
Hye-Shik Chang [Wed, 2 Jun 2004 16:52:49 +0000 (16:52 +0000)]
Fix grammar hopefully. :)

21 years ago- SF #962502: Add two more methods for unicode type; width() and
Hye-Shik Chang [Wed, 2 Jun 2004 16:49:17 +0000 (16:49 +0000)]
- SF #962502: Add two more methods for unicode type; width() and
iswide() for east asian width manipulation. (Inspired by David
Goodger, Reviewed by Martin v. Loewis)
- Move _PyUnicode_TypeRecord.flags to the end of the struct so that
no padding is added for UCS-4 builds. (Suggested by Martin v. Loewis)

21 years agoAdd a name (old change sitting in my tree)
Andrew M. Kuchling [Wed, 2 Jun 2004 15:37:04 +0000 (15:37 +0000)]
Add a name (old change sitting in my tree)

21 years agoRemove old reminder
Andrew M. Kuchling [Wed, 2 Jun 2004 15:33:59 +0000 (15:33 +0000)]
Remove old reminder

21 years agoCGMainDisplayID() doesn't exist on 10.1, so don't try to call it when
Jack Jansen [Wed, 2 Jun 2004 13:44:05 +0000 (13:44 +0000)]
CGMainDisplayID() doesn't exist on 10.1, so don't try to call it when
building for that platform.