R David Murray
9bd6a37df2
whatsnew: dbm.open is context manager. ( #19282 )
2014-03-08 12:00:52 -05:00
R David Murray
cbf479ae64
whatsnew: sunau/aifc/wave writeframes[raw] accept any bytes-like ( #8311 )
2014-03-08 11:46:05 -05:00
R David Murray
5d6240e871
whatsnew: Wave_write handles unseekable files. ( #5202 )
...
Also clarify the documentation of this feature.
2014-03-08 11:14:29 -05:00
Nick Coghlan
1635578d5f
Improve descriptions of introspection changes
...
Several of the introspection changes in Python 3.4 are indirect,
where inspect module changes affected pydoc, and those in turn
affected the help builtin. This update adds versionchanged
notes in the key locations, as well as more coverage in the
What's New document (in particular, a note in the porting
section regarding the expanded domain for inspect.getfullargspec).
2014-03-08 16:36:37 +10:00
R David Murray
8591563628
whatsnew: audioop accepts any bytes-like, rejects strings.
2014-03-07 21:35:31 -05:00
R David Murray
6c50101fc9
whatsnew: inet_pton/inet_ntop support windows ( #7171 ).
...
Added versionchanged to docs.
2014-03-07 21:22:39 -05:00
R David Murray
99e1bfad09
whatsnew: sunau supports 24 bit samples.
2014-03-07 21:15:56 -05:00
R David Murray
47d083cf1a
whatsnew: cp273 codec ( #10907797 )
...
Also updated the docs and added the aliases mentioned by the
references.
2014-03-07 21:00:34 -05:00
R David Murray
e2684d93e2
whatsnew: get[status|output] works on windows.
...
Since 3.3.4.... :(
2014-03-07 20:06:24 -05:00
R David Murray
beec02ac06
whatsnew: note in deprecation section about html.parser strict.
2014-03-06 13:40:53 -05:00
R David Murray
393c8f36ef
whatsnew: rewrite resource entry: prlimit and new constants.
2014-03-06 12:47:31 -05:00
R David Murray
6674ac0873
whatsnew: ipaddress is_global
...
Also tweaked the docs a bit and added the missing entry for
the ipv6 is_global.
2014-03-06 11:51:37 -05:00
R David Murray
83db8fc3cc
whatsnew: improve PyZipFile filterfuc entry, and its docs ( #19274 ).
2014-03-05 10:48:01 -05:00
R David Murray
04edfdf320
whatsnew: tweak a couple importlib porting notes.
...
I had missed that there was already an entry for the Frozen package change, so
I combined mine with the existing one. Also added the info about the reload
change to the entry for the other changes to reload, but I'm missing an issue
number for the rest of the attribute behavior changes so I left myself an
XXX as a reminder to find it.
2014-03-03 08:56:43 -05:00
R David Murray
66902edf23
whatsnew: Windows build uses ASLR and DEP.
2014-03-03 08:26:49 -05:00
R David Murray
8be77910be
whatsnew: add some issue number annotations.
...
Add issue number to tick_counter, PyOS_ReadlineFunctionPointer, marshal
optimizations (add Antoine's contribution to the entry under the marshal
module), and absolute paths in __file__.
2014-03-02 17:14:33 -05:00
R David Murray
db8843f36e
whatsnew: memoryview is Sequence and supports Reversed.
2014-03-01 12:09:55 -05:00
R David Murray
9c0c101ee4
whatsnew: unittest discover works on namespace packages ( #17457 ).
...
I also added the docs that never got committed, editing the patch provided by
Claudiu.
I collapsed the now three versionchanged directives for discovery into one. I
tried several different styles for this. The most obvious is a bulleted list,
but currently the only way I could find to produce that is to have *something*
appear on the versionchanged line after the colon, which combined with the
blank space before the bulleted list just looks wrong. I also tried the
current single-line-three-sentences version with bullet characters before each
sentence, and I almost went with that as it made it clear that the three
sentences are independent. But I decided to just go with the sentences for
simplicity reasons.
2014-03-01 11:57:58 -05:00
R David Murray
8ab50214bd
whatsnew: give Serhiy credit for audioop 24-bit sample support.
2014-02-28 13:30:27 -05:00
R David Murray
0bec63e67d
whatsnew: compression libraries support 'x' mode.
2014-02-27 20:05:42 -05:00
R David Murray
4b1ea234a0
whatsnew: tarfile stat constants removal.
2014-02-27 18:55:34 -05:00
R David Murray
ecef6cd2f1
whatsnew: return types of re functions.
2014-02-27 18:32:32 -05:00
R David Murray
871119eb2f
whatsnew: fix textwrap/shorten entry, and improve the related docs.
...
I had incorrectly added back the shorten method when I initially
made the whatsnew entry, but the shorten function docs were not
correct according to the code. I also improved the wording in
general.
2014-02-27 18:01:43 -05:00
R David Murray
9251d59523
whatsnew: expand pbkdf2_hmac entry slightly.
2014-02-26 13:07:21 -05:00
R David Murray
d2d81f0163
whatsnew: reformat pdb entry to match style of most other module entries.
...
That is: one paragraph per feature.
2014-02-26 12:52:51 -05:00
R David Murray
bdf5efa10c
whatsnew: reword the contextlib.redirect_stdout entry for increased clarity.
2014-02-26 12:46:19 -05:00
R David Murray
80ebf6d171
whatsnew: attribute base64 memoryview change to Nick.
2014-02-26 10:09:25 -05:00
R David Murray
63f4dd5e8f
whatsnew: pprint's compact option.
2014-02-26 09:51:58 -05:00
R David Murray
13cc883aaa
whatsnew: DynanicClassAttribute ( #19030 ), Py_SetStandardStreamEncoding ( #16129 )
...
Adding missing docs for DynamicClassAttribute by copying the docstring. The
doc entry could stand some expansion, which I will note on the issue.
2014-02-25 16:03:14 -05:00
R David Murray
77d73facdc
whatsnew: encoding is now optional in PYTHONIOENCODING ( #18818 )
2014-02-25 10:55:29 -05:00
R David Murray
6c0f707cd1
whatsnew: logging SocketHandler and DatagramHandler support Unix domain sockets.
2014-02-25 10:39:56 -05:00
R David Murray
7cae336890
whatsnew: Request.method can be overridden in subclasses ( #18978 ).
...
Jason doced the change in the constructor *method* description, but
not the description of Request.method, so I added the change there
as well.
2014-02-25 10:22:50 -05:00
R David Murray
8920e915fa
whatsnew: http.server --bind cli option.
...
Also some fixups in the docs.
2014-02-24 17:21:42 -05:00
R David Murray
56f3c306c2
whatsnew: unittest.TestCase.assertLogs.
...
Also fix issue number in address sanity check entry.
2014-02-24 16:05:57 -05:00
R David Murray
4e564c893b
whatsnew: cypthon can be compiled with address sanity checking enabled.
2014-02-24 15:48:22 -05:00
R David Murray
8eb443d58b
Fix typo.
2014-02-24 12:59:20 -05:00
R David Murray
26818f64f0
whatsnew: frame.clear, expanded entry for -I/isolated mode.
2014-02-24 10:38:13 -05:00
R David Murray
54bf73a54a
whatsnew: threading.main_thread, os.urandom persistent handle, sunau.open with.
2014-02-23 21:31:53 -05:00
R David Murray
0b32adf832
whatsnew: unittest uses argparse now.
2014-02-23 21:02:53 -05:00
R David Murray
ef3da23cb3
whatsnew: unittest drops references to successful tests.
2014-02-23 20:53:50 -05:00
R David Murray
27519673d3
whatsnew: pyvenv --copies option.
...
Also added the missing documentation for new new option.
2014-02-23 11:36:25 -05:00
R David Murray
f3f2838ee5
whatsnew: devnull fileno/close/closed.
2014-02-23 11:21:59 -05:00
R David Murray
93a9328326
whatsnew: hashlib.hash.name is now public and returns lowercase always.
2014-02-23 10:42:47 -05:00
R David Murray
6e1bc7cab9
whatsnew: textwrap.shorten.
...
Also add the missing TextWrapper.shorten method doc.
2014-02-23 10:22:07 -05:00
R David Murray
a183064d86
whatsnew: ExtensionFileLoader.get_filename.
...
Also reflow mmap paragraph.
2014-02-23 09:41:27 -05:00
R David Murray
928924d1a1
whatsnew: os.path.ismount recognizes volumes mounted below root.
2014-02-22 16:31:26 -05:00
R David Murray
237fda2984
whatsnew: PyStructSequence_InitType2, Victor's MemoryError fixes.
...
I'm documenting this new function, but I'm wondering if this will trigger
someone to think about whether or not this actually makes sense :)
2014-02-22 16:02:22 -05:00
R David Murray
7c12432fe1
whatsnew: Windows uses VirtualAlloc, --version goes to stdout.
2014-02-22 15:35:37 -05:00
R David Murray
b070b3f502
whatsnew: frozen package __path__; and min/max versionadded.
2014-02-22 15:05:08 -05:00
R David Murray
fce0082005
whatsnew: importlib deprecations.
...
This addresses issue #20199 , if I got it right. The deprecation and
replacement lists are based on the importlib documentation.
2014-02-22 14:28:46 -05:00
Yury Selivanov
34ce99f66d
Mangle __parameters in __annotations__ dict properly. Issue #20625 .
2014-02-18 12:49:41 -05:00
R David Murray
85489f9031
whatsnew: 'other improvements' and 'optimizations' belong under CPython heading.
2014-02-12 13:41:01 -05:00
R David Murray
5d411a1a49
whatsnew: PyUnicode_FromFormat width/precision, thread cleanup after fork.
2014-02-12 13:39:11 -05:00
R David Murray
af7d2c4917
whatsnew: LOAD_CLASSDEREF, -X showrefcount
2014-02-12 13:00:36 -05:00
R David Murray
2167e29d31
whatsnew: os.path.samestat on windows, keyword defaults evaluation order.
2014-02-12 00:02:34 -05:00
R David Murray
db2d8a4ca5
whatsnew: command.com support gone, int *base* can be __index__ but not float.
2014-02-11 23:34:14 -05:00
R David Murray
d630e79cc7
whatsnew: object.__format__ raises TypeError on non-empty string.
...
See issues #7994 and #9856 . I also modified with wording of the format doc
entry to better match what really happens, and added a versionchanged to the
datamodel object.__format__ section.
2014-02-11 18:34:22 -05:00
R David Murray
540227214c
whatsnew: undocumented Popen.wait endtime is deprecated.
2014-02-11 12:40:18 -05:00
R David Murray
801fe934d9
whatsnew: __complex__ may not return float, .so may have multiple python modules
...
Also a NEWS wording fixup.
2014-02-11 08:13:10 -05:00
Larry Hastings
3f99504c08
Merge Python 3.4.0rc1 release branch.
2014-02-11 00:15:46 -08:00
R David Murray
04e24288e1
whatsnew: slice.index no longer accepts negative values (or overflows).
2014-02-10 21:30:42 -05:00
R David Murray
8dffa0e5cf
Fix PYTHONPATH wording. It's just PATH, not "normal posix convention".
2014-02-10 19:16:40 -05:00
R David Murray
96eeddba05
whatsnew: bytes/bytearray.join args, PYTHONPATH= is same as not set.
2014-02-10 19:12:52 -05:00
Larry Hastings
ad88d7a26b
Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors.
2014-02-10 04:26:10 -08:00
Nick Coghlan
72318b97f6
Issue #20500 : clarify that invocation may be indirect
2014-02-09 12:05:13 +10:00
Nick Coghlan
c0bc0b46bb
Issue #20500 : Note other public APIs with the new assertion
2014-02-09 12:00:01 +10:00
Nick Coghlan
3d7b3641d3
Note the new debug assertion in PyObject_Str
2014-02-09 10:57:34 +10:00
Nick Coghlan
aa029dad50
Tweaks to What's New and some referenced docs
2014-02-09 10:10:24 +10:00
Nick Coghlan
96bb437ae8
Close #20563 : Declare ipaddress API stable
2014-02-09 09:18:26 +10:00
R David Murray
45e732de70
whatsnew: read/write on closed SSL socket exception has changed.
2014-02-03 01:33:39 -05:00
R David Murray
bf0ab8377a
whatsnew: html.escape 10x faster, _gestalt module gone.
2014-02-03 01:14:03 -05:00
R David Murray
a56d4e8ea1
whatsnew: hmac accepts more bytes types, importlib decode_source, stat in C.
2014-02-02 12:50:48 -05:00
R David Murray
5147e00c81
whatsnew: -m <namespace package>, plus 'using' doc updates.
2014-02-02 12:19:57 -05:00
R David Murray
900aeb7221
whatsnew: some more importlib replacements for imp functions.
...
get_magic->util.MAGIC_NUMBER, source_from_cache, and cache_from_source.
2014-02-02 11:32:31 -05:00
R David Murray
4885f49e7f
whatsnew: filecmp.clear_cache, and reword description of cache in docs.
2014-02-02 11:11:01 -05:00
R David Murray
70e04f5fbc
whatsnew: fix importlib.reload entry.
...
Turns out I committed a work-in-progress entry because of a time
gap between when I wrote it and when I committed.
2014-02-02 10:50:17 -05:00
R David Murray
8c561b52b2
whatsnew: move of reload, update new windows-only ssl functions entry.
2014-02-01 12:27:07 -05:00
Yury Selivanov
63da7c7b0c
inspect.signature: Support duck-types of Python functions (Cython, for instance) #17159
2014-01-31 14:48:37 -05:00
Andrew Kuchling
fe0f0b050d
Typo fix
2014-01-31 12:17:53 -05:00
Yury Selivanov
d82eddcf05
inspect.getfullargspec: Use inspect.signature API behind the scenes #17481
2014-01-29 11:24:39 -05:00
Yury Selivanov
2393dca472
inspect.signature: Use '/' to separate positional-only parameters from
...
the rest in Signature.__str__. #20356
2014-01-27 15:07:58 -05:00
Nick Coghlan
77b286b2cc
Close #20105 : set __traceback__ when chaining exceptions in C
2014-01-27 00:53:38 +10:00
R David Murray
f1e4fdcf16
whatsnew: smtpd *map* argument, new ssl functions/methods.
...
Fleshed out Christian's placeholder for the new ssl methods.
2014-01-21 18:30:42 -05:00
Brett Cannon
c089f70b54
Issue #18394 : Document that cgi.FieldStorage now cleans up after its
...
'file' attribute properly in Python 3.4.
Thanks to Marcel Hellkamp for pointing out the oversight.
2014-01-17 11:03:19 -05:00
Ronald Oussoren
6db6653bbc
Issue #14455 : Fix some issues with plistlib
...
* Negative integer support in binary plists was broken
* Better exception for invalid data
* Fix the versionadded/versionchanged markup in the documentation
* Add the interface cleanup to what's new for 3.4
2014-01-15 11:32:35 +01:00
Zachary Ware
335957e087
Correct a typo. Found by Lauri Hakko on docs@.
2014-01-13 16:08:54 -06:00
R David Murray
0ae7ae1fc9
whatsnew: InspectLoader.get_code now concrete, b32decode raises binascii.Error.
...
And a news item rephrase.
2014-01-08 18:16:02 -05:00
R David Murray
66bf12a58e
whatsnew: FileIO.readall performance, os.cpu_count.
...
And more news item tweaks.
2014-01-08 17:21:22 -05:00
R David Murray
0bce6e7462
whatsnew: expand 'dis' entry.
...
Also add one missing versionadded.
2014-01-07 14:30:17 -05:00
R David Murray
a101bdb88c
whatsnew: ssl getpeercert/do_handshake raise OSError, weakref __callback__.
...
Also add a missing word to gc entry, and delete a now-obsolete doc note
in the weakref __callback__ docs. (Opened an issue for rewriting
the section that compares finalizers and __del__ method.)
2014-01-06 16:32:05 -05:00
R David Murray
9835827593
whatsnew: pydoc.Scanner removal, check_output input parm, operator.py.
...
Also fleshed out the entry on struct.iter_unpack.
2014-01-05 20:52:06 -05:00
R David Murray
410d320703
whatsnew: XMLPullParser, plus some doc updates.
...
I was confused by the text saying that read_events "iterated", since it
actually returns an iterator (that's what a generator does) that the
caller must then iterate. So I tidied up the language. I'm not sure
what the sentence "Events provided in a previous call to read_events()
will not be yielded again." is trying to convey, so I didn't try to fix that.
Also fixed a couple more news items.
2014-01-04 23:52:50 -05:00
R David Murray
244ad600e9
whatsnew: removal of TYPE_INT64 from marshal.
...
Also update news entry for SMTPException; when I changed it from
IOError to OSError I forgot to update the news item.
2014-01-04 21:17:52 -05:00
R David Murray
9cf617bff9
whatsnew: logging TimedRotatingFileHandler atTime parameter.
2014-01-04 18:55:01 -05:00
R David Murray
4908f4a151
whatsnew: from __future__ string exception, attribute UTF-32 decoder speedup.
...
And more news entry clarifications.
2014-01-04 18:07:20 -05:00
R David Murray
b231b2be07
whatsnew: ppring string wrapping, string pickling optimization.
...
Also clarify some NEWS entries.
2014-01-04 17:11:23 -05:00
R David Murray
57fcf76d73
whatsnew: Mock mock_open readline(s); expand description of subtests feature.
2014-01-03 23:31:54 -05:00
Serhiy Storchaka
3079328d29
Reverted changeset b72c5573c5e7 (issue #15027 ).
2014-01-04 22:44:01 +02:00
Serhiy Storchaka
583a93943c
Issue #15027 : Rewrite the UTF-32 encoder. It is now 1.6x to 3.5x faster.
2014-01-04 19:25:37 +02:00
R David Murray
e608255328
whatsnew: consistently use 3 blanks between major sections. 2 for minor.
2014-01-03 16:15:45 -05:00