Commit graph

47866 commits

Author SHA1 Message Date
Martin v. Löwis
dd5909725c Adjust PySlice_GetIndices documentation to signature change. 2010-12-11 18:17:22 +00:00
R. David Murray
d06f801e28 Blocked revisions 83675,85087,85178 via svnmerge
........
  r83675 | r.david.murray | 2010-08-03 13:56:09 -0400 (Tue, 03 Aug 2010) | 12 lines

  #9444: use first of prefix_chars for help opt instead of raising error

  An argparse option parser created with a prefix_chars that did not
  include a '-' would happily add -h and --help options, and then throw
  an error when it tried to format the help because the - was an invalid
  prefix character.  This patch makes it use the first character of
  prefix_chars as the character for the help options if and only if '-'
  is not one of the valid prefix_chars.

  Fix by Theodore Turocy, unit tests by Catherine Devlin.
........
  r85087 | r.david.murray | 2010-09-28 21:22:20 -0400 (Tue, 28 Sep 2010) | 2 lines

  Have test_sqlite print version info when run in verbose mode.
........
  r85178 | r.david.murray | 2010-10-02 09:29:13 -0400 (Sat, 02 Oct 2010) | 2 lines

  Make the printing of sqlite version in verbose mode work with regrtest -w.
........
2010-12-11 02:26:37 +00:00
R. David Murray
07c1bd7457 Merged revisions 85678 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85678 | r.david.murray | 2010-10-17 21:14:06 -0400 (Sun, 17 Oct 2010) | 5 lines

  #678250: Make mmap flush a noop on ACCESS_READ and ACCESS_COPY.

  Patch by Sébastien Sablé.  This solves a test_mmap failure on AIX.
........
2010-12-11 02:05:32 +00:00
Georg Brandl
cc9d237fe7 Fix typo. 2010-12-10 19:22:11 +00:00
Alexander Belopolsky
532d091d05 Reverted accidental commit (from r87159) 2010-12-10 18:14:16 +00:00
Alexander Belopolsky
fc55789cae Updated UCD version and unicode.org links to Unicode 6.0.0 2010-12-10 18:11:24 +00:00
Raymond Hettinger
070ec70cbe Move nntp entry back to changed modules section and add entry for non-ascii import directories. 2010-12-10 17:45:13 +00:00
Vinay Sajip
5a27d40186 logging: added handler of last resort. 2010-12-10 11:42:57 +00:00
Georg Brandl
cf03ac0c64 #10668: fix wrong call of __init__. 2010-12-10 10:01:44 +00:00
Vinay Sajip
40e86f0df2 Fied typo 2010-12-10 09:11:23 +00:00
Vinay Sajip
129fd04440 test.support: Added TestHandler and Matcher classes for better support of assertions about logging. 2010-12-10 08:19:38 +00:00
Vinay Sajip
dfa0a2abcf Minor documentation tweak. 2010-12-10 08:17:05 +00:00
Ezio Melotti
8f77630747 #10273: Remove a "Matches" that I missed in r86910. Thanks to RDM for noticing it. 2010-12-10 02:32:05 +00:00
Raymond Hettinger
522cc0a9a1 Reclassify some entries and remove a couple of minor ones. 2010-12-10 01:19:15 +00:00
Raymond Hettinger
21ec4bc296 Overview of email module and recategorize various entries. 2010-12-10 01:09:01 +00:00
Raymond Hettinger
5eb6390fc7 Doh! Example pasted twice, but only once in the right place. 2010-12-09 23:43:34 +00:00
Georg Brandl
c95c91880a Guard against rogue tuples. 2010-12-09 18:26:02 +00:00
Georg Brandl
b56c0e24d6 #10661: give QName a nicer repr. 2010-12-09 18:10:27 +00:00
Georg Brandl
fb1720b0f5 Fix "seperate". 2010-12-09 18:08:43 +00:00
Raymond Hettinger
792c076cce Entries for datetime, callable, and collections.Counter. 2010-12-09 16:41:54 +00:00
Hirokazu Yamamoto
8e63c687ef Merged revisions 87140 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r87140 | hirokazu.yamamoto | 2010-12-09 19:49:00 +0900 (木, 09 12 2010) | 2 lines

  Should call Py_INCREF for Py_None (Modules/_ssl.c: PySSL_cipher)
........
2010-12-09 12:30:05 +00:00
Hirokazu Yamamoto
5280275ffc Fixed typo in comment. 2010-12-09 11:13:30 +00:00
Hirokazu Yamamoto
524f10359b Should call Py_INCREF for Py_None (Modules/_ssl.c: PySSL_cipher) 2010-12-09 10:49:00 +00:00
Hirokazu Yamamoto
ba466cd208 Merged revisions 85071-85072,85894,87132 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85071 | hirokazu.yamamoto | 2010-09-29 03:29:57 +0900 (水, 29 9 2010) | 1 line

  Now perl path with spaces can be used.
........
  r85072 | hirokazu.yamamoto | 2010-09-29 03:36:04 +0900 (水, 29 9 2010) | 1 line

  Updated PC/VC6 openssl build script. (for openssl-1.0.0a)
........
  r85894 | hirokazu.yamamoto | 2010-10-29 02:57:25 +0900 (金, 29 10 2010) | 1 line

  Updated readme.txt about OpenSSL.
........
  r87132 | hirokazu.yamamoto | 2010-12-08 23:47:07 +0900 (水, 08 12 2010) | 3 lines

  Mention NASM which is needed to build openssl-1.0.0a original source.
  (PC/VC6/readme.txt)
........
2010-12-09 09:25:38 +00:00
Alexander Belopolsky
e239d23e8c Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for NULL 2010-12-08 23:31:48 +00:00
R. David Murray
1b2bd3b348 Have script_helper._assert_python strip refcount strings from stderr.
This makes the output of the function and those that depend on it
independent of whether or not they are being run under a debug
build.
2010-12-08 22:53:00 +00:00
Victor Stinner
53a9dd776e Issue #10546: UTF-16-LE and UTF-16-BE *do* support non-BMP characters
Fix the doc and add tests.
2010-12-08 22:25:45 +00:00
Alexander Belopolsky
84cc06288d Edited the Unicode 6.0.0 entry to add unicode.org links and trim the summary. 2010-12-08 21:38:46 +00:00
Alexander Belopolsky
72572319fc Added a datetime new features entry 2010-12-08 21:21:56 +00:00
Hirokazu Yamamoto
3405de03a6 Mention NASM which is needed to build openssl-1.0.0a original source.
(PC/VC6/readme.txt)
2010-12-08 14:47:07 +00:00
Raymond Hettinger
515fabbf96 Entry for inspect.getattr_static(). 2010-12-08 11:33:19 +00:00
Raymond Hettinger
b1ff4024a8 Example of argparge with subparsers. 2010-12-08 11:19:45 +00:00
Raymond Hettinger
2ffa671de7 range() example 2010-12-08 10:18:21 +00:00
Senthil Kumaran
f34445f7bd Fix Issue8194 - Fix incompatible API change in the parse_respones for xmlrpclib. 2010-12-08 08:04:49 +00:00
Raymond Hettinger
24a0941a0f Nits. 2010-12-08 06:50:02 +00:00
Raymond Hettinger
83d8079ee7 Clean-ups. 2010-12-08 06:48:33 +00:00
Raymond Hettinger
b105519710 Add example for concurrent.futures. 2010-12-08 06:42:41 +00:00
Raymond Hettinger
3fcf002994 Update whatsnew. Salt the random number seed. 2010-12-08 01:13:53 +00:00
Ronald Oussoren
a85b671cb6 Merged revisions 87119 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r87119 | ronald.oussoren | 2010-12-07 16:28:10 +0100 (Tue, 07 Dec 2010) | 2 lines

  Fix for issue #10107: Without this patch IDLE on OSX doesn't warn about unsaved files when quitting.
........
2010-12-07 15:31:07 +00:00
Ronald Oussoren
10e05e17a3 Fix for issue #10107: Without this patch IDLE on OSX doesn't warn about unsaved files when quitting. 2010-12-07 15:28:10 +00:00
Ronald Oussoren
0499d0b03a Two small changes to adjust framework builds to the new stable ABI
Both the Makefile and the script that is used on OSX to create the binary
installer refer to the directory containing the Makefile using the name
'config'. This name was changed with the new ABI (with default build flags
it is now named config-3.2m).  This patch ensures that both files use the
correct name.

The build-installer.py script contains one other change: it now tests for the
Tcl/Tk framework version by looking at the 'Current' symlink in the framework
instead of runnning a script. This makes it possible to verify the version
that is in the SDK that's used during the build instead of the version that
is installed on the system.
2010-12-07 14:41:05 +00:00
Hirokazu Yamamoto
7ed117addf Issue #10637: Called CloseHandle twice in os.stat/os.lstat (Windows) 2010-12-07 10:24:37 +00:00
Raymond Hettinger
2c1ecc300e Martin's name with Unicode. 2010-12-07 09:55:02 +00:00
Raymond Hettinger
c2c7c37377 Make the example a little more interesting and useful. 2010-12-07 09:44:21 +00:00
Raymond Hettinger
673ccf20dc Clean-ups and examples. 2010-12-07 09:37:11 +00:00
Raymond Hettinger
68f1e8d87f Spelling. 2010-12-07 09:24:30 +00:00
Raymond Hettinger
a0266335f5 More cleanups and examples. 2010-12-07 08:52:41 +00:00
Raymond Hettinger
677e10a45e Add example for the entry for argparse 2010-12-07 06:45:30 +00:00
Benjamin Peterson
9b955de76f use the more direct API 2010-12-07 04:04:02 +00:00
Benjamin Peterson
9b4e27e8c6 add news note 2010-12-07 03:47:37 +00:00