1. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
  2. 9e7c8da Simplified tuple returned by string._formatter_parser to only have by Eric Smith · 17 years ago
  3. 79710cd Changed STRINGLIB_CMP from an inline function to a macro in order to avoid a 'defined but not used' warning. by Eric Smith · 17 years ago
  4. 3d5cb22 Change to use the new buffer API instead of bytes objects for both keys and by Gregory P. Smith · 17 years ago
  5. 3fd22da some test suite cleanup, use tempfile.mkdtemp() in setUp and by Gregory P. Smith · 17 years ago
  6. a280ca75 Conform to strict str/bytes distinction. by Lars Gustäbel · 17 years ago
  7. 6665cef Apply this change from 2.6. Hopefully it doesn't cause a conflict. by Neal Norwitz · 17 years ago
  8. 1b1498b Idiom adjustment in the docs for the parser module. by Collin Winter · 17 years ago
  9. d1d9a89 Kill lingering docs references to UnicodeType. by Collin Winter · 17 years ago
  10. 2befd24 Don't encourage 'from types import *' in the types module's docs. by Collin Winter · 17 years ago
  11. 6d199ef Remove unneeded import. by Collin Winter · 17 years ago
  12. 8ef94e8 Remove unneeded imports from bsddb's test_dbshelve. by Collin Winter · 17 years ago
  13. 115cde3 Style/idiom cleanup of binhex module. by Collin Winter · 17 years ago
  14. 1b261df Make this work on Mac as well (where Type and Creator are bytes instead of str). by Guido van Rossum · 17 years ago
  15. 92bab81 My wish for TempFile is fulfilled. by Guido van Rossum · 17 years ago
  16. f0c7416 Patch # 1033 by Adam Hupp: by Guido van Rossum · 17 years ago
  17. a1a6852 Make test_cgi pass. I changed the internal file created by make_file() by Guido van Rossum · 17 years ago
  18. 0cb431c Code layout changes for PEP 7 compliance. by Eric Smith · 17 years ago
  19. 7b4beea Make dumbdbm use bytes for keys consistently. by Guido van Rossum · 17 years ago
  20. bb839ef More str/bytes goodness. by Guido van Rossum · 17 years ago
  21. f6db409 Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, so that they can be used when backporting to 2.6. by Eric Smith · 17 years ago
  22. ec42ffd More str/bytes strictness. by Guido van Rossum · 17 years ago
  23. 199fc75 str/bytes strictness. by Guido van Rossum · 17 years ago
  24. b644fb4 str/bytes strictness. by Guido van Rossum · 17 years ago
  25. 7a6dd29 Cleanup in anticipation of moving formatteriterator and fieldnameiterator into stringlib/string_format.h. by Eric Smith · 17 years ago
  26. 7dcb844 More str/bytes strictness. by Guido van Rossum · 17 years ago
  27. 7d5baac posix.confname(): enforce that names as str instances. by Guido van Rossum · 17 years ago
  28. 26d95c3 More str/bytes fixes. by Guido van Rossum · 17 years ago
  29. e22905a More changes needed to make things work once bytes and str are truly divorced. by Guido van Rossum · 17 years ago
  30. 25a29a9 One further change. by Guido van Rossum · 17 years ago
  31. 54a40cb Force test_xmlrpc to pass. I'm not happy with how I did this, but I don't by Guido van Rossum · 17 years ago
  32. 98b349f Fix some tests I broke. (More to follow.) by Guido van Rossum · 17 years ago
  33. 1f2ca56 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  34. 09549f4 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  35. 739e2ad Additional test for formatting code. by Eric Smith · 17 years ago
  36. 9c62772 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  37. 35d9428 There should be no codecs left that return str8 intead of bytes. by Guido van Rossum · 17 years ago
  38. 700bd92 Fix a few places that broke due to a recent change to io.py. by Guido van Rossum · 17 years ago
  39. 5abbf75 Changes to io.py and socket.py by Christian Heimes. by Guido van Rossum · 17 years ago
  40. 6dab795 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  41. 39478e8 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  42. 85825dc Changes preparing for stricter enforcement of bytes vs. str. by Guido van Rossum · 17 years ago
  43. 56e4a84 Added test to ensure __format__ methods return unicode objects. by Eric Smith · 17 years ago
  44. a4b8d1d Some changes in preparation of stricter rules about mixing str and bytes. by Guido van Rossum · 17 years ago
  45. ddd2582 Fixed accidental indentation change. by Eric Smith · 17 years ago
  46. e226b55 PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unicode methods instead (per GvR suggestion). by Eric Smith · 17 years ago
  47. 8cef8a8 Port the build_ssl.py script to Python 3. by Thomas Heller · 17 years ago
  48. 8a4eb29 Fix refleaks in test_unicode and test_string related to the new format code. by Neal Norwitz · 17 years ago
  49. 2bad970 Make some internal functions static by Neal Norwitz · 17 years ago
  50. 908c871 Fix some refleaks (and format/error checking) by Neal Norwitz · 17 years ago
  51. 247b515 This adds a leak, but fixes a crash. The leaking code is: by Neal Norwitz · 17 years ago
  52. 44c19f6 Get gdb macros working with unicode and PyVarObject change by Neal Norwitz · 17 years ago
  53. 1e93f2b Fix warning by Neal Norwitz · 17 years ago
  54. ab45e27 Tkinter binding involving Control-spacebar raises unicode error Issue1028 by Kurt B. Kaiser · 17 years ago
  55. fac6e9d Add a couple of files that are necessary based on getting PCbuil8 to work. by Neal Norwitz · 17 years ago
  56. d082b6e os.getcwd() now returns a normal string (ie, unicode) by Neal Norwitz · 17 years ago
  57. 19b4a27 Cosmetics in error messages. by Guido van Rossum · 17 years ago
  58. fe82e16 Add some more files from 1031 that I missed. by Neal Norwitz · 17 years ago
  59. d78e52c Manually apply most of patch 1031 to try to get python to build on Windows. by Neal Norwitz · 17 years ago
  60. 1385b89 Patch 1030, Adapt _winreg.c to the new buffer API. by Neal Norwitz · 17 years ago
  61. 0117ffc Use new print function (part of patch 1031) by Neal Norwitz · 17 years ago
  62. 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
  63. 2bf4d5b Use the correct variable name by Neal Norwitz · 17 years ago
  64. efaf629 Use unicode (hope it's right, I can't test it) by Neal Norwitz · 17 years ago
  65. e760631 When elapsed and expected time differ, at least show their two values. by Guido van Rossum · 17 years ago
  66. a43cae3 Pass PyBUF_CHARACTER instead of PyBUF_SIMPLE to PyObject_GetBuffer(). by Guido van Rossum · 17 years ago
  67. a62db27 Restore an assert, but move it to the proper place. by Neal Norwitz · 17 years ago
  68. 7f9d29c Use unicode by Neal Norwitz · 17 years ago
  69. 93c5682 Use unicode (and bytes as appropriate) by Neal Norwitz · 17 years ago
  70. 80e7f27 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  71. da059e3 Use unicode by Neal Norwitz · 17 years ago
  72. 5616c6d Fix a couple of warnings by Neal Norwitz · 17 years ago
  73. 3c814d2 Use unicode (and bytes as appropriate) by Neal Norwitz · 17 years ago
  74. 8abd2e6 Use unicode by Neal Norwitz · 17 years ago
  75. 3fcbea5 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  76. ed2b739 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  77. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  78. 5b0fdc9 Fix another map(...) --> list(map...) by Kurt B. Kaiser · 17 years ago
  79. 571861d Remove assert that seems out of place. It triggers with test_string, by Neal Norwitz · 17 years ago
  80. 7e95bef Use unicode and stop supporting str8 by Neal Norwitz · 17 years ago
  81. fe53713 Use unicode by Neal Norwitz · 17 years ago
  82. 9406f5c Use the new buffer api for input data. by Gregory P. Smith · 17 years ago
  83. 6777c85 Use unicode by Neal Norwitz · 17 years ago
  84. 1ccfa90 Return a boolean for status by Neal Norwitz · 17 years ago
  85. e118862 Use unicode by Neal Norwitz · 17 years ago
  86. 312e10d Get rid of more uses of string and use const in a few places. by Neal Norwitz · 17 years ago
  87. a9ea3d9 Regenerate by Neal Norwitz · 17 years ago
  88. fce59bf Get the urllib tests to pass without the email package by Neal Norwitz · 17 years ago
  89. 0337ef6 Get test working when there are multiple dbs supported. by Neal Norwitz · 17 years ago
  90. fe61bb9 Disable test until email comes back by Neal Norwitz · 17 years ago
  91. cb51c6e Get test_pyclbr to pass after removing the email package by Neal Norwitz · 17 years ago
  92. 392c5be Use unicode by Neal Norwitz · 17 years ago
  93. 3ef6a57 Get rid of compiler warning on 64-bit by Neal Norwitz · 17 years ago
  94. ae2c876 Use unicode by Neal Norwitz · 17 years ago
  95. 8ced961 Fix some comments by Neal Norwitz · 17 years ago
  96. 1dd2c82 Cosmetic fixes to make this work with Py3k (as well as with 2.5 still). by Guido van Rossum · 17 years ago
  97. 6398b7a Remove the email package for now. by Guido van Rossum · 17 years ago
  98. f616b22 Support unicode names by Neal Norwitz · 17 years ago
  99. b4e2f76 Use unicode by Neal Norwitz · 17 years ago
  100. a369c5a Use unicode by Neal Norwitz · 17 years ago