)]}'
{"/PATCHSET_LEVEL":[{"author":{"_account_id":38496,"name":"Andressa Cabistani","display_name":"Andressa","email":"acabistani@gmail.com","username":"andressadotpy","status":"I\u0027m a Software Engineer at Red Hat and I love Open Source and connect with people! Feel free to DM through IRC, I\u0027ll be delighted to chat"},"change_message_id":"dab84f2ddb7b8ac02f0c3f707eb13a053633b38f","unresolved":false,"context_lines":[],"source_content_type":"","patch_set":12,"id":"9ad69700_3042dd80","updated":"2026-06-30 14:22:44.000000000","message":"Added a small nit comment but this one is looking really good as it is.","commit_id":"27a768660a418392f71bf67d41bcd19d8ee9d974"}],"swift/common/bufferedhttp.py":[{"author":{"_account_id":38496,"name":"Andressa Cabistani","display_name":"Andressa","email":"acabistani@gmail.com","username":"andressadotpy","status":"I\u0027m a Software Engineer at Red Hat and I love Open Source and connect with people! Feel free to DM through IRC, I\u0027ll be delighted to chat"},"change_message_id":"dab84f2ddb7b8ac02f0c3f707eb13a053633b38f","unresolved":true,"context_lines":[{"line_number":65,"context_line":"            # No socket means no file-like -- set it to None like in"},{"line_number":66,"context_line":"            # HTTPResponse.close()"},{"line_number":67,"context_line":"            self.fp \u003d None"},{"line_number":68,"context_line":"        elif USE_EVENTLET:"},{"line_number":69,"context_line":"            # sock.fd is a socket.socket, which should have a _real_close"},{"line_number":70,"context_line":"            self._real_socket \u003d sock.fd"},{"line_number":71,"context_line":"            self.fp \u003d sock.makefile(\u0027rb\u0027)"}],"source_content_type":"text/x-python","patch_set":12,"id":"929a2fae_e4b8ccb7","line":68,"updated":"2026-06-30 14:22:44.000000000","message":"Suggestion (and a nit one): Reduce code duplication\n\nChange from:\n\n```\n  elif USE_EVENTLET:\n      self._real_socket \u003d sock.fd\n      self.fp \u003d sock.makefile(\u0027rb\u0027)\n  else:\n      self._real_socket \u003d sock\n      self.fp \u003d sock.makefile(\u0027rb\u0027)\n\n```\n\nTo:\n\n```\n  if sock is None:\n      self.fp \u003d None\n  else:\n      if USE_EVENTLET:\n          self._real_socket \u003d sock.fd\n      else:\n          self._real_socket \u003d sock\n      self.fp \u003d sock.makefile(\u0027rb\u0027)\n\n```","commit_id":"27a768660a418392f71bf67d41bcd19d8ee9d974"}]}
