]> granicus.if.org Git - python/log
python
13 years agoreplace() uses unicode_fromascii() if the input and replace string is ASCII
Victor Stinner [Wed, 5 Oct 2011 21:27:08 +0000 (23:27 +0200)]
replace() uses unicode_fromascii() if the input and replace string is ASCII

13 years agounicode_fromascii() checks that the input is ASCII in debug mode
Victor Stinner [Wed, 5 Oct 2011 21:26:01 +0000 (23:26 +0200)]
unicode_fromascii() checks that the input is ASCII in debug mode

13 years agotraceback: fix dump_ascii() for string with kind=PyUnicode_WCHAR_KIND
Victor Stinner [Wed, 5 Oct 2011 20:44:12 +0000 (22:44 +0200)]
traceback: fix dump_ascii() for string with kind=PyUnicode_WCHAR_KIND

13 years agoMerge from 3.2
Amaury Forgeot d'Arc [Wed, 5 Oct 2011 20:37:06 +0000 (22:37 +0200)]
Merge from 3.2

13 years agoEnable the only tests for sys.gettrace
Amaury Forgeot d'Arc [Wed, 5 Oct 2011 20:36:05 +0000 (22:36 +0200)]
Enable the only tests for sys.gettrace

13 years agoIssue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle
Charles-François Natali [Wed, 5 Oct 2011 17:53:43 +0000 (19:53 +0200)]
Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle
would be finalized after the reference to its underlying BufferedRWPair's
writer got cleared by the GC.

13 years agoIssue13104 - Fix urllib.request.thishost() utility function.
Senthil Kumaran [Wed, 5 Oct 2011 16:32:02 +0000 (00:32 +0800)]
Issue13104 - Fix urllib.request.thishost() utility function.

13 years agoIssue #13073 - Address the review comments made by Ezio.
Senthil Kumaran [Wed, 5 Oct 2011 15:26:49 +0000 (23:26 +0800)]
Issue  #13073 - Address the review comments made by Ezio.

13 years agoos.geteuid() may not be available...
Charles-François Natali [Tue, 4 Oct 2011 21:35:47 +0000 (23:35 +0200)]
os.geteuid() may not be available...

13 years agoIssue #11956: Always skip test_import.test_unwritable_directory when run as
Charles-François Natali [Tue, 4 Oct 2011 18:40:58 +0000 (20:40 +0200)]
Issue #11956: Always skip test_import.test_unwritable_directory when run as
root, since the semantics varies across Unix variants.

13 years agoIssue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as
Charles-François Natali [Tue, 4 Oct 2011 17:17:26 +0000 (19:17 +0200)]
Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as
root (directory permissions are ignored).

13 years agoTry to fix linking failures under Windows
Antoine Pitrou [Tue, 4 Oct 2011 12:43:47 +0000 (14:43 +0200)]
Try to fix linking failures under Windows

13 years agoRemove all other uses of the C tolower()/toupper() which could break with a Turkish...
Antoine Pitrou [Tue, 4 Oct 2011 11:50:21 +0000 (13:50 +0200)]
Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale.

13 years agoIssue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.
Antoine Pitrou [Tue, 4 Oct 2011 11:35:28 +0000 (13:35 +0200)]
Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.
Reported and diagnosed by Thomas Kluyver.

13 years agoAdd John to ACKS
Antoine Pitrou [Tue, 4 Oct 2011 10:26:34 +0000 (12:26 +0200)]
Add John to ACKS

13 years agoIssue #13087: BufferedReader.seek() now always raises UnsupportedOperation
Antoine Pitrou [Tue, 4 Oct 2011 10:26:20 +0000 (12:26 +0200)]
Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation
if the underlying raw stream is unseekable, even if the seek could be
satisfied using the internal buffer.  Patch by John O'Connor.

13 years agoStart fixing test_bigmem:
Antoine Pitrou [Tue, 4 Oct 2011 08:22:36 +0000 (10:22 +0200)]
Start fixing test_bigmem:
- bigmemtest is replaced by precisionbigmemtest
- add a poor man's watchdog thread to print memory consumption

13 years agoIssue #7689: Allow pickling of dynamically created classes when their
Antoine Pitrou [Tue, 4 Oct 2011 07:23:04 +0000 (09:23 +0200)]
Issue #7689: Allow pickling of dynamically created classes when their
metaclass is registered with copyreg.  Patch by Nicolas M. Thiéry and
Craig Citro.

13 years agoIssue #12881: ctypes: Fix segfault with large structure field names.
Meador Inge [Tue, 4 Oct 2011 02:44:22 +0000 (21:44 -0500)]
Issue #12881: ctypes: Fix segfault with large structure field names.

13 years agoFix a few ResourceWarnings in idle
Amaury Forgeot d'Arc [Mon, 3 Oct 2011 18:33:24 +0000 (20:33 +0200)]
Fix a few ResourceWarnings in idle

13 years agoAdd asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII
Victor Stinner [Wed, 5 Oct 2011 19:24:08 +0000 (21:24 +0200)]
Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII

ucs1, ucs2 and ucs4 libraries have to scan created substring to find the
maximum character, whereas it is not need to ASCII strings. Because ASCII
strings are common, it is useful to optimize ASCII.

13 years agoFix PyUnicode_Partition(): str_in->str_obj
Victor Stinner [Wed, 5 Oct 2011 18:58:25 +0000 (20:58 +0200)]
Fix PyUnicode_Partition(): str_in->str_obj

13 years agoFix my_basename(): make the string ready
Victor Stinner [Wed, 5 Oct 2011 18:14:23 +0000 (20:14 +0200)]
Fix my_basename(): make the string ready

13 years agoIssue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle
Charles-François Natali [Wed, 5 Oct 2011 17:55:56 +0000 (19:55 +0200)]
Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle
would be finalized after the reference to its underlying BufferedRWPair's
writer got cleared by the GC.

13 years agoEnsure that newly created strings use the most efficient store in debug mode
Victor Stinner [Tue, 4 Oct 2011 23:34:17 +0000 (01:34 +0200)]
Ensure that newly created strings use the most efficient store in debug mode

13 years agoDocument requierements of Unicode kinds
Victor Stinner [Tue, 4 Oct 2011 23:31:05 +0000 (01:31 +0200)]
Document requierements of Unicode kinds

13 years agoReplace PyUnicodeObject* with PyObject* where it was inappropriate
Victor Stinner [Tue, 4 Oct 2011 22:59:23 +0000 (00:59 +0200)]
Replace PyUnicodeObject* with PyObject* where it was inappropriate

13 years agounicodeobject.c doesn't make output strings ready in debug mode
Victor Stinner [Tue, 4 Oct 2011 22:42:43 +0000 (00:42 +0200)]
unicodeobject.c doesn't make output strings ready in debug mode

Try to only create non ready strings in debug mode to ensure that all functions
(not only in unicodeobject.c, everywhere) make input strings ready.

13 years agomerge from 3.2. Issue13104 - Fix urllib.request.thishost() utility function.
Senthil Kumaran [Wed, 5 Oct 2011 16:32:52 +0000 (00:32 +0800)]
merge from 3.2.  Issue13104 - Fix urllib.request.thishost() utility function.

13 years agomerge from 3.2. Issue #13073 - Address the review comments made by Ezio.
Senthil Kumaran [Wed, 5 Oct 2011 15:27:37 +0000 (23:27 +0800)]
merge from 3.2. Issue  #13073 - Address the review comments made by Ezio.

13 years agoMore fixes.
Georg Brandl [Wed, 5 Oct 2011 14:47:38 +0000 (16:47 +0200)]
More fixes.

13 years agoMore typoes.
Georg Brandl [Wed, 5 Oct 2011 14:36:47 +0000 (16:36 +0200)]
More typoes.

13 years agoFix a few typos in the unicode header.
Georg Brandl [Wed, 5 Oct 2011 14:23:09 +0000 (16:23 +0200)]
Fix a few typos in the unicode header.

13 years agoFix grammar.
Georg Brandl [Wed, 5 Oct 2011 14:12:21 +0000 (16:12 +0200)]
Fix grammar.

13 years agoSpeedup str[a:b:step] for step != 1
Victor Stinner [Wed, 5 Oct 2011 12:13:28 +0000 (14:13 +0200)]
Speedup str[a:b:step] for step != 1

Try to stop the scanner of the maximum character before the end using a limit
depending on the kind (e.g. 256 for PyUnicode_2BYTE_KIND).

13 years agoSpeedup find_maxchar_surrogates() for 32-bit wchar_t
Victor Stinner [Wed, 5 Oct 2011 12:02:44 +0000 (14:02 +0200)]
Speedup find_maxchar_surrogates() for 32-bit wchar_t

If we have at least one character in U+10000-U+10FFFF, we know that we must use
PyUnicode_4BYTE_KIND kind.

13 years agoSpeedup str[a:b] and PyUnicode_FromKindAndData
Victor Stinner [Wed, 5 Oct 2011 12:01:42 +0000 (14:01 +0200)]
Speedup str[a:b] and PyUnicode_FromKindAndData

 * str[a:b] doesn't scan the string for the maximum character if the string
   is ascii only
 * PyUnicode_FromKindAndData() stops if we are sure that we cannot use a
   shorter character type. For example, _PyUnicode_FromUCS1() stops if we
   have at least one character in range U+0080-U+00FF

13 years agoSpeedup the ASCII decoder
Victor Stinner [Wed, 5 Oct 2011 11:50:52 +0000 (13:50 +0200)]
Speedup the ASCII decoder

It is faster for long string and a little bit faster for short strings,
benchmark on Linux 32 bits, Intel Core i5 @ 3.33GHz:

./python -m timeit 'x=b"a"' 'x.decode("ascii")'
./python -m timeit 'x=b"x"*80' 'x.decode("ascii")'
./python -m timeit 'x=b"abc"*4096' 'x.decode("ascii")'

length |   before   | after
-------+------------+-----------
     1 | 0.234 usec | 0.229 usec
    80 | 0.381 usec | 0.357 usec
12,288 |  11.2 usec |  3.01 usec

13 years agoFix text failures when ctypes is not available
Antoine Pitrou [Wed, 5 Oct 2011 11:01:41 +0000 (13:01 +0200)]
Fix text failures when ctypes is not available
(followup to Victor's 85d11cf67aa8 and 7a50e549bd11)

13 years agoMerge.
Charles-François Natali [Tue, 4 Oct 2011 21:37:43 +0000 (23:37 +0200)]
Merge.

13 years agoos.geteuid() may not be available...
Charles-François Natali [Tue, 4 Oct 2011 21:36:49 +0000 (23:36 +0200)]
os.geteuid() may not be available...

13 years agoFix usage og PyUnicode_READY()
Victor Stinner [Tue, 4 Oct 2011 18:53:03 +0000 (20:53 +0200)]
Fix usage og PyUnicode_READY()

13 years ago_PyUnicode_READY_REPLACE() cannot be used in unicode_subtype_new()
Victor Stinner [Tue, 4 Oct 2011 18:52:31 +0000 (20:52 +0200)]
_PyUnicode_READY_REPLACE() cannot be used in unicode_subtype_new()

13 years agoIssue #11956: Always skip test_import.test_unwritable_directory when run as
Charles-François Natali [Tue, 4 Oct 2011 18:41:52 +0000 (20:41 +0200)]
Issue #11956: Always skip test_import.test_unwritable_directory when run as
root, since the semantics varies across Unix variants.

13 years agoAdd DONT_MAKE_RESULT_READY to unicodeobject.c to help detecting bugs
Victor Stinner [Tue, 4 Oct 2011 18:05:46 +0000 (20:05 +0200)]
Add DONT_MAKE_RESULT_READY to unicodeobject.c to help detecting bugs

Use also _PyUnicode_READY_REPLACE() when it's applicable.

13 years agoAdd assertion to _Py_ReleaseInternedUnicodeStrings() if READY fails
Victor Stinner [Tue, 4 Oct 2011 18:04:52 +0000 (20:04 +0200)]
Add assertion to _Py_ReleaseInternedUnicodeStrings() if READY fails

13 years agoFix naïve heuristic in unicode slicing (followup to 1b4f886dc9e2)
Antoine Pitrou [Tue, 4 Oct 2011 18:00:49 +0000 (20:00 +0200)]
Fix naïve heuristic in unicode slicing (followup to 1b4f886dc9e2)

13 years agoMerge.
Charles-François Natali [Tue, 4 Oct 2011 17:20:52 +0000 (19:20 +0200)]
Merge.

13 years agoIssue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as
Charles-François Natali [Tue, 4 Oct 2011 17:19:21 +0000 (19:19 +0200)]
Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as
root (directory permissions are ignored).

13 years agoMerge
Antoine Pitrou [Tue, 4 Oct 2011 17:11:34 +0000 (19:11 +0200)]
Merge

13 years agoAdd a necessary call to PyUnicode_READY() (followup to ab5086539ab9)
Antoine Pitrou [Tue, 4 Oct 2011 17:10:51 +0000 (19:10 +0200)]
Add a necessary call to PyUnicode_READY() (followup to ab5086539ab9)

13 years agoOptimize string slicing to use the new API
Antoine Pitrou [Tue, 4 Oct 2011 17:08:01 +0000 (19:08 +0200)]
Optimize string slicing to use the new API

13 years ago#13054: fix usage of sys.maxunicode after PEP-393.
Ezio Melotti [Tue, 4 Oct 2011 16:06:00 +0000 (19:06 +0300)]
#13054: fix usage of sys.maxunicode after PEP-393.

13 years agoAlso fix pickletester
Antoine Pitrou [Tue, 4 Oct 2011 14:18:15 +0000 (16:18 +0200)]
Also fix pickletester

13 years agoAn embarassing litle typo
Antoine Pitrou [Tue, 4 Oct 2011 14:07:27 +0000 (16:07 +0200)]
An embarassing litle typo

13 years agoWhen expandtabs() would be a no-op, don't create a duplicate string
Antoine Pitrou [Tue, 4 Oct 2011 14:04:01 +0000 (16:04 +0200)]
When expandtabs() would be a no-op, don't create a duplicate string

13 years agoMigrate test_bigmem to PEP 393-compliant size calculations (hopefully)
Antoine Pitrou [Tue, 4 Oct 2011 13:55:44 +0000 (15:55 +0200)]
Migrate test_bigmem to PEP 393-compliant size calculations (hopefully)

13 years agoMigrate str.expandtabs to the new API
Antoine Pitrou [Tue, 4 Oct 2011 13:55:09 +0000 (15:55 +0200)]
Migrate str.expandtabs to the new API

13 years agoTry to fix linking failures under Windows
Antoine Pitrou [Tue, 4 Oct 2011 12:44:35 +0000 (14:44 +0200)]
Try to fix linking failures under Windows

13 years agoRemove all other uses of the C tolower()/toupper() which could break with a Turkish...
Antoine Pitrou [Tue, 4 Oct 2011 11:53:01 +0000 (13:53 +0200)]
Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale.

13 years agoIssue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.
Antoine Pitrou [Tue, 4 Oct 2011 11:37:06 +0000 (13:37 +0200)]
Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.
Reported and diagnosed by Thomas Kluyver.

13 years agoFix compilation error under Windows
Antoine Pitrou [Tue, 4 Oct 2011 11:00:02 +0000 (13:00 +0200)]
Fix compilation error under Windows

13 years agoIssue #13087: BufferedReader.seek() now always raises UnsupportedOperation
Antoine Pitrou [Tue, 4 Oct 2011 10:28:52 +0000 (12:28 +0200)]
Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation
if the underlying raw stream is unseekable, even if the seek could be
satisfied using the internal buffer.  Patch by John OConnor.

13 years agoCollect stats a bit more often
Antoine Pitrou [Tue, 4 Oct 2011 10:06:06 +0000 (12:06 +0200)]
Collect stats a bit more often

13 years agoUse the faulthandler module's infrastructure to write a GIL-less
Antoine Pitrou [Tue, 4 Oct 2011 09:51:23 +0000 (11:51 +0200)]
Use the faulthandler module's infrastructure to write a GIL-less
memory watchdog for timely stats collection.

13 years agoFix test failure
Antoine Pitrou [Tue, 4 Oct 2011 08:39:54 +0000 (10:39 +0200)]
Fix test failure

13 years agoStart fixing test_bigmem:
Antoine Pitrou [Tue, 4 Oct 2011 08:28:37 +0000 (10:28 +0200)]
Start fixing test_bigmem:
- bigmemtest is replaced by precisionbigmemtest
- add a poor man's watchdog thread to print memory consumption

13 years agoIssue #7689: Allow pickling of dynamically created classes when their
Antoine Pitrou [Tue, 4 Oct 2011 07:25:28 +0000 (09:25 +0200)]
Issue #7689: Allow pickling of dynamically created classes when their
metaclass is registered with copyreg.  Patch by Nicolas M. Thiéry and
Craig Citro.

13 years agoIssue #12881: ctypes: Fix segfault with large structure field names.
Meador Inge [Tue, 4 Oct 2011 02:48:30 +0000 (21:48 -0500)]
Issue #12881: ctypes: Fix segfault with large structure field names.

13 years agofix parens
Benjamin Peterson [Mon, 3 Oct 2011 23:37:29 +0000 (19:37 -0400)]
fix parens

13 years agofix formatting
Benjamin Peterson [Mon, 3 Oct 2011 23:35:07 +0000 (19:35 -0400)]
fix formatting

13 years agofix compiler warnings
Benjamin Peterson [Mon, 3 Oct 2011 23:34:12 +0000 (19:34 -0400)]
fix compiler warnings

13 years agoComplete documentation of compact ASCII strings
Victor Stinner [Mon, 3 Oct 2011 23:32:45 +0000 (01:32 +0200)]
Complete documentation of compact ASCII strings

13 years agoMove in-place Unicode append to its own subfunction
Victor Stinner [Mon, 3 Oct 2011 23:17:31 +0000 (01:17 +0200)]
Move in-place Unicode append to its own subfunction

13 years agoReindent internal Unicode macros
Victor Stinner [Mon, 3 Oct 2011 23:07:11 +0000 (01:07 +0200)]
Reindent internal Unicode macros

13 years agoDocument utf8_length and wstr_length states
Victor Stinner [Mon, 3 Oct 2011 23:05:08 +0000 (01:05 +0200)]
Document utf8_length and wstr_length states

Ensure these states with assertions in _PyUnicode_CheckConsistency().

13 years agoresize_inplace() sets utf8_length to zero if the utf8 is not shared8
Victor Stinner [Mon, 3 Oct 2011 23:03:50 +0000 (01:03 +0200)]
resize_inplace() sets utf8_length to zero if the utf8 is not shared8

Cleanup also the code.

13 years agoPyUnicode_New() sets utf8_length to zero for latin1
Victor Stinner [Mon, 3 Oct 2011 23:02:02 +0000 (01:02 +0200)]
PyUnicode_New() sets utf8_length to zero for latin1

13 years agoUnicode: raise SystemError instead of ValueError or RuntimeError on invalid
Victor Stinner [Mon, 3 Oct 2011 22:04:26 +0000 (00:04 +0200)]
Unicode: raise SystemError instead of ValueError or RuntimeError on invalid
state

13 years agoUnicode: document when the wstr pointer is shared with data
Victor Stinner [Mon, 3 Oct 2011 22:00:20 +0000 (00:00 +0200)]
Unicode: document when the wstr pointer is shared with data

Add also related assertions to _PyUnicode_CheckConsistency().

13 years agoAdd _PyUnicode_HAS_WSTR_MEMORY() macro
Victor Stinner [Mon, 3 Oct 2011 21:45:12 +0000 (23:45 +0200)]
Add _PyUnicode_HAS_WSTR_MEMORY() macro

13 years agoPyUnicode_Join() checks output length in debug mode
Victor Stinner [Mon, 3 Oct 2011 21:36:02 +0000 (23:36 +0200)]
PyUnicode_Join() checks output length in debug mode

PyUnicode_CopyCharacters() may copies less character than requested size, if
the input string is smaller than the argument. (This is very unlikely, but who
knows!?)

Avoid also calling PyUnicode_CopyCharacters() if the string is empty.

13 years agoFix a compiler warning in PyUnicode_Append()
Victor Stinner [Mon, 3 Oct 2011 21:27:56 +0000 (23:27 +0200)]
Fix a compiler warning in PyUnicode_Append()

Don't check PyUnicode_CopyCharacters() in release mode. Rename also some
variables.

13 years agoImprove string forms and PyUnicode_Resize() documentation
Victor Stinner [Mon, 3 Oct 2011 21:19:21 +0000 (23:19 +0200)]
Improve string forms and PyUnicode_Resize() documentation

Remove also the FIXME for resize_copy(): as discussed with Martin, copy the
string on resize if the string is not resizable is just fine.

13 years agoSimplify unicode_resizable(): singletons reference count is at least 2
Victor Stinner [Mon, 3 Oct 2011 18:06:05 +0000 (20:06 +0200)]
Simplify unicode_resizable(): singletons reference count is at least 2

13 years agoIssue #13001: Fix test_socket.testRecvmsgTrunc failure on FreeBSD < 8, which
Charles-François Natali [Mon, 3 Oct 2011 17:43:15 +0000 (19:43 +0200)]
Issue #13001: Fix test_socket.testRecvmsgTrunc failure on FreeBSD < 8, which
doesn't always set the MSG_TRUNC flag when a truncated datagram is received.

13 years agoIntroduce support.requires_freebsd_version decorator.
Charles-François Natali [Mon, 3 Oct 2011 17:40:37 +0000 (19:40 +0200)]
Introduce support.requires_freebsd_version decorator.

13 years ago_PyUnicode_CheckConsistency() checks utf8 field consistency
Victor Stinner [Mon, 3 Oct 2011 12:42:39 +0000 (14:42 +0200)]
_PyUnicode_CheckConsistency() checks utf8 field consistency

13 years agounicode_subtype_new() copies also the ascii flag
Victor Stinner [Mon, 3 Oct 2011 12:42:15 +0000 (14:42 +0200)]
unicode_subtype_new() copies also the ascii flag

13 years agounicode_kind_name() doesn't check consistency anymore
Victor Stinner [Mon, 3 Oct 2011 12:41:45 +0000 (14:41 +0200)]
unicode_kind_name() doesn't check consistency anymore

It is is called from _PyUnicode_Dump() and so must not fail.

13 years agoPyUnicode_Ready() now sets ascii=1 if maxchar < 128
Victor Stinner [Mon, 3 Oct 2011 11:53:37 +0000 (13:53 +0200)]
PyUnicode_Ready() now sets ascii=1 if maxchar < 128

ascii=1 is no more reserved to PyASCIIObject. Use
PyUnicode_IS_COMPACT_ASCII(obj) to check if obj is a PyASCIIObject (as before).

13 years agoCreate _PyUnicode_READY_REPLACE() to reuse singleton
Victor Stinner [Mon, 3 Oct 2011 11:28:14 +0000 (13:28 +0200)]
Create _PyUnicode_READY_REPLACE() to reuse singleton

Only use _PyUnicode_READY_REPLACE() on just created strings.

13 years agoFix resize_compact() and resize_inplace(); reenable full resize optimizations
Victor Stinner [Mon, 3 Oct 2011 10:52:27 +0000 (12:52 +0200)]
Fix resize_compact() and resize_inplace(); reenable full resize optimizations

 * resize_compact() updates also wstr_len for non-ascii strings sharing wstr
 * resize_inplace() updates also utf8_len/wstr_len for strings sharing
   utf8/wstr

13 years agoresize_inplace() has been fixed: reenable this optimization
Victor Stinner [Mon, 3 Oct 2011 10:21:33 +0000 (12:21 +0200)]
resize_inplace() has been fixed: reenable this optimization

13 years ago_PyUnicode_Dump() indicates if wstr and/or utf8 are shared
Victor Stinner [Mon, 3 Oct 2011 10:12:11 +0000 (12:12 +0200)]
_PyUnicode_Dump() indicates if wstr and/or utf8 are shared

13 years agoFix resize_inplace(): update shared utf8 pointer
Victor Stinner [Mon, 3 Oct 2011 10:11:00 +0000 (12:11 +0200)]
Fix resize_inplace(): update shared utf8 pointer

13 years agoDisable unicode_resize() optimization on Windows (16-bit wchar_t)
Victor Stinner [Mon, 3 Oct 2011 02:18:04 +0000 (04:18 +0200)]
Disable unicode_resize() optimization on Windows (16-bit wchar_t)

13 years ago_PyUnicode_Ready() for 16-bit wchar_t
Victor Stinner [Mon, 3 Oct 2011 02:17:10 +0000 (04:17 +0200)]
_PyUnicode_Ready() for 16-bit wchar_t

13 years agoFix compilation error on Windows
Victor Stinner [Mon, 3 Oct 2011 02:06:05 +0000 (04:06 +0200)]
Fix compilation error on Windows

Fix also a compiler warning.

13 years agoDocument message_body arg in HTTPConnection.endheaders
Senthil Kumaran [Sun, 2 Oct 2011 23:27:06 +0000 (07:27 +0800)]
Document message_body arg in HTTPConnection.endheaders