Éric Araujo
|
f5be090bc3
|
Fix example
|
2010-08-17 21:24:05 +00:00 |
Antoine Pitrou
|
cdfe1c54fc
|
Add versionadded tags
|
2010-08-17 21:15:00 +00:00 |
Antoine Pitrou
|
bf1a018ce4
|
Modernize gzip examples
|
2010-08-17 21:11:49 +00:00 |
Antoine Pitrou
|
79c5ef11d5
|
Issue #3488: Provide convenient shorthand functions `gzip.compress`
and `gzip.decompress`. Original patch by Anand B. Pillai.
|
2010-08-17 21:10:05 +00:00 |
Brian Curtin
|
852823d731
|
Cleanup and correct a few ints to be Py_ssize_t.
|
2010-08-17 20:49:09 +00:00 |
Brian Curtin
|
abb3351785
|
Properly downcast from size_t/Py_ssize_t in a few places.
|
2010-08-17 20:08:40 +00:00 |
Antoine Pitrou
|
19467d27ff
|
Clean some 64-bit issues. Also, always spell "ssize_t" "Py_ssize_t".
|
2010-08-17 19:33:30 +00:00 |
Raymond Hettinger
|
3fccfcb751
|
Minor rewording to docs for the lru_cache decorator
|
2010-08-17 19:19:29 +00:00 |
Antoine Pitrou
|
554f33407c
|
Fix <deque iterator>.__length_hint__() under 64-bit Windows.
|
2010-08-17 18:30:06 +00:00 |
Antoine Pitrou
|
671b4d948e
|
Issue #9612: The set object is now 64-bit clean under Windows.
|
2010-08-17 17:55:07 +00:00 |
Benjamin Peterson
|
7ac98ae3b3
|
wrap
|
2010-08-17 17:52:02 +00:00 |
Giampaolo Rodolà
|
42382fedcc
|
fix issue #8807: adds a context parameter to POP3_SSL class.
|
2010-08-17 16:09:53 +00:00 |
Giampaolo Rodolà
|
ccfb91c89f
|
fix issue #8866: parameters passed to socket.getaddrinfo can now be specified as single keyword arguments.
|
2010-08-17 15:30:23 +00:00 |
Georg Brandl
|
67b21b7547
|
Consistency check for versionadded/changed directives.
|
2010-08-17 15:07:14 +00:00 |
Georg Brandl
|
9e25701e87
|
Markup nits.
|
2010-08-17 14:11:59 +00:00 |
Nick Coghlan
|
d26c18adcc
|
Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the module to execute. Also updates all the cmd_line_script tests to validate the setting of sys.path[0] and the current working directory
|
2010-08-17 13:06:11 +00:00 |
Nick Coghlan
|
46e6380563
|
Another attempt at pacifying the windows buildbots by ignoring all the variable information in the dis.code_info tests
|
2010-08-17 11:28:07 +00:00 |
Nick Coghlan
|
09c8123e6f
|
Address XXX comment in dis.py: inspect.py now attempts to reuse the dis.py compiler flag values before resorting to defining its own
|
2010-08-17 10:18:16 +00:00 |
Nick Coghlan
|
77203adb7e
|
Ignore the exact ID value for the nested function in the dis.code_info tests
|
2010-08-17 09:25:57 +00:00 |
Ezio Melotti
|
fc8b205da2
|
Correct a couple of assert* methods. Patch by Dave Malcolm.
|
2010-08-17 08:35:41 +00:00 |
Nick Coghlan
|
eae2da1da7
|
Issue 9147: Add dis.code_info()
|
2010-08-17 08:03:36 +00:00 |
Nick Coghlan
|
9887683f74
|
Document and test the resolution of issue 3445 (tolerate missing attributes in functools.update_wrapper, previously implemented as a side effect of the __annotations__ copying patch) and implement issue 9567 (add a __wrapped__ attribute when using update_wrapper)
|
2010-08-17 06:17:18 +00:00 |
Nick Coghlan
|
632a0c1476
|
Remove some lingering remnants of the short-lived functools.lfu_cache
|
2010-08-17 05:22:50 +00:00 |
Benjamin Peterson
|
ad1e0c5e5f
|
added versionadded
|
2010-08-17 03:37:20 +00:00 |
Benjamin Peterson
|
052a02be4a
|
add tests for mknod() and mkfifo() #9569
|
2010-08-17 01:27:09 +00:00 |
Benjamin Peterson
|
82c4885210
|
remove test for oldstyle classes
|
2010-08-17 01:08:46 +00:00 |
Benjamin Peterson
|
83cd3b91e2
|
use assertTrue/assertFalse
|
2010-08-17 01:07:53 +00:00 |
Benjamin Peterson
|
45c257f193
|
add support for abstract class and static methods #5867
|
2010-08-17 00:52:52 +00:00 |
Victor Stinner
|
36e791179c
|
test_zipimport: fix test name
|
2010-08-17 00:44:11 +00:00 |
Victor Stinner
|
4a3733d160
|
Issue #9425: save/restore exception on filename encoding
_PyUnicode_AsString() raises an exception on unencodable filename.
|
2010-08-17 00:39:57 +00:00 |
Victor Stinner
|
028dd97dfb
|
Issue #9425: zipimporter_repr() uses unicode
|
2010-08-17 00:04:48 +00:00 |
Victor Stinner
|
60fe8d902d
|
Issue #9425: get_data() uses an unicode path
|
2010-08-16 23:48:11 +00:00 |
Amaury Forgeot d'Arc
|
844807ead2
|
r82659 reintroduced some tab characters. Untabify again.
|
2010-08-16 22:16:51 +00:00 |
Amaury Forgeot d'Arc
|
f2b69df023
|
Fix compilation warning on Windows
|
2010-08-16 22:11:29 +00:00 |
Victor Stinner
|
ef8d95c498
|
Issue #9425: Create Py_UNICODE_strncmp() function
The code is based on strncmp() of the libiberty library,
function in the public domain.
|
2010-08-16 22:03:11 +00:00 |
Brian Curtin
|
405038ac1c
|
Mark myself as assignable for winreg, and put myself down for Windows.
|
2010-08-16 20:50:03 +00:00 |
Alexander Belopolsky
|
977a684c94
|
Issue #8983: Corrected docstrings.
|
2010-08-16 20:17:07 +00:00 |
Tim Golden
|
4a339ad628
|
Add Tim Golden as interested in Windows
|
2010-08-16 20:10:39 +00:00 |
Florent Xicluna
|
c9c29e2ab2
|
I get it wrong in r84097: s/relative/absolute/
|
2010-08-16 19:03:05 +00:00 |
Alexander Belopolsky
|
e29e6bffb5
|
Issue #665761: functools.reduce() will no longer mask exceptions other
than TypeError raised by the iterator argument. Also added a test to
check that zip() already behaves similarly.
|
2010-08-16 18:55:46 +00:00 |
Florent Xicluna
|
27354ccec9
|
Use test.support and unittest features. Fix duplicated test (bad merge in r79033). Fix comment for issue #7902.
|
2010-08-16 18:41:19 +00:00 |
Victor Stinner
|
ad5b1df67f
|
Add versionadded tag to PySys_FormatStd*() functions doc
|
2010-08-16 18:39:49 +00:00 |
Victor Stinner
|
2460a43a65
|
Issue #9425: read_directory() is fully unicode compliant
zipimport is now able to load a module with an unencodable filename.
|
2010-08-16 17:54:28 +00:00 |
Victor Stinner
|
79766636b6
|
Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr()
Write a message formatted by PyUnicode_FromFormatV() to sys.stdout and
sys.stderr.
|
2010-08-16 17:36:42 +00:00 |
Antoine Pitrou
|
982c018b32
|
Remove debug hack
|
2010-08-16 14:33:42 +00:00 |
Giampaolo Rodolà
|
677d95c258
|
fix getaddrinfo test failure on OSX caused by AI_CANNAME erroneously used as the value for 'proto'
|
2010-08-16 05:08:11 +00:00 |
Richard Jones
|
daf235032f
|
close down sockets held by asyncore at end of test; closes issue9619
|
2010-08-16 01:48:14 +00:00 |
Antoine Pitrou
|
b14ac8c2b0
|
Save and restore the global asyncore.socket_map, and warn if a test modified it
|
2010-08-16 00:28:05 +00:00 |
Antoine Pitrou
|
ed9863685f
|
Add debug output to the asyncore test
|
2010-08-15 23:28:10 +00:00 |
Antoine Pitrou
|
f4c7badc02
|
Put test_ciphers in NetworkedTests
|
2010-08-15 23:02:22 +00:00 |